home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / ncurses / curses.h next >
Encoding:
C/C++ Source or Header  |  2008-11-21  |  77.9 KB  |  1,752 lines

  1. /****************************************************************************
  2.  * Copyright (c) 1998-2007,2008 Free Software Foundation, Inc.              *
  3.  *                                                                          *
  4.  * Permission is hereby granted, free of charge, to any person obtaining a  *
  5.  * copy of this software and associated documentation files (the            *
  6.  * "Software"), to deal in the Software without restriction, including      *
  7.  * without limitation the rights to use, copy, modify, merge, publish,      *
  8.  * distribute, distribute with modifications, sublicense, and/or sell       *
  9.  * copies of the Software, and to permit persons to whom the Software is    *
  10.  * furnished to do so, subject to the following conditions:                 *
  11.  *                                                                          *
  12.  * The above copyright notice and this permission notice shall be included  *
  13.  * in all copies or substantial portions of the Software.                   *
  14.  *                                                                          *
  15.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
  16.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
  17.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
  18.  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
  19.  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
  20.  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
  21.  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
  22.  *                                                                          *
  23.  * Except as contained in this notice, the name(s) of the above copyright   *
  24.  * holders shall not be used in advertising or otherwise to promote the     *
  25.  * sale, use or other dealings in this Software without prior written       *
  26.  * authorization.                                                           *
  27.  ****************************************************************************/
  28.  
  29. /****************************************************************************
  30.  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
  31.  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
  32.  *     and: Thomas E. Dickey                        1996-on                 *
  33.  ****************************************************************************/
  34.  
  35. /* $Id: curses.h.in,v 1.183 2008/01/19 20:03:48 tom Exp $ */
  36.  
  37. #ifndef __NCURSES_H
  38. #define __NCURSES_H
  39.  
  40. #define CURSES 1
  41. #define CURSES_H 1
  42.  
  43. /* This should be defined for the enhanced functionality to be visible.
  44.  * However, some of the wide-character (enhanced) functionality is missing.
  45.  * So we do not define it (yet).
  46. #define _XOPEN_CURSES 1
  47.  */
  48.  
  49. /* These are defined only in curses.h, and are used for conditional compiles */
  50. #define NCURSES_VERSION_MAJOR 5
  51. #define NCURSES_VERSION_MINOR 6
  52. #define NCURSES_VERSION_PATCH 20080209
  53.  
  54. /* This is defined in more than one ncurses header, for identification */
  55. #undef  NCURSES_VERSION
  56. #define NCURSES_VERSION "5.6"
  57.  
  58. /*
  59.  * Identify the mouse encoding version.
  60.  */
  61. #define NCURSES_MOUSE_VERSION 1
  62.  
  63. /*
  64.  * Definitions to facilitate DLL's.
  65.  */
  66. #include <ncurses_dll.h>
  67.  
  68. /*
  69.  * User-definable tweak to disable the include of <stdbool.h>.
  70.  */
  71. #ifndef NCURSES_ENABLE_STDBOOL_H
  72. #define NCURSES_ENABLE_STDBOOL_H 1
  73. #endif
  74.  
  75. /*
  76.  * NCURSES_ATTR_T is used to quiet compiler warnings when building ncurses
  77.  * configured using --disable-macros.
  78.  */
  79. #ifdef NCURSES_NOMACROS
  80. #ifndef NCURSES_ATTR_T
  81. #define NCURSES_ATTR_T attr_t
  82. #endif
  83. #endif /* NCURSES_NOMACROS */
  84.  
  85. #ifndef NCURSES_ATTR_T
  86. #define NCURSES_ATTR_T int
  87. #endif
  88.  
  89. /*
  90.  * Expands to 'const' if ncurses is configured using --enable-const.  Note that
  91.  * doing so makes it incompatible with other implementations of X/Open Curses.
  92.  */
  93. #undef  NCURSES_CONST
  94. #define NCURSES_CONST /*nothing*/
  95.  
  96. #undef NCURSES_INLINE
  97. #define NCURSES_INLINE inline
  98.  
  99. /*
  100.  * The internal type used for color values
  101.  */
  102. #undef    NCURSES_COLOR_T
  103. #define    NCURSES_COLOR_T short
  104.  
  105. /*
  106.  * Definition used to make WINDOW and similar structs opaque.
  107.  */
  108. #ifndef NCURSES_OPAQUE
  109. #define NCURSES_OPAQUE 0
  110. #endif
  111.  
  112. /*
  113.  * The internal type used for window dimensions.
  114.  */
  115. #undef    NCURSES_SIZE_T
  116. #define    NCURSES_SIZE_T short
  117.  
  118. /*
  119.  * Control whether tparm() supports varargs or fixed-parameter list.
  120.  */
  121. #undef NCURSES_TPARM_VARARGS
  122. #define NCURSES_TPARM_VARARGS 1
  123.  
  124. /*
  125.  * NCURSES_CH_T is used in building the library, but not used otherwise in
  126.  * this header file, since that would make the normal/wide-character versions
  127.  * of the header incompatible.
  128.  */
  129. #undef    NCURSES_CH_T
  130. #define NCURSES_CH_T cchar_t
  131.  
  132. #if 0 && defined(_LP64)
  133. typedef unsigned chtype;
  134. typedef unsigned mmask_t;
  135. #else
  136. typedef unsigned long chtype;
  137. typedef unsigned long mmask_t;
  138. #endif
  139.  
  140. #include <stdio.h>
  141. #include <unctrl.h>
  142. #include <stdarg.h>    /* we need va_list */
  143. #ifdef _XOPEN_SOURCE_EXTENDED
  144. #include <stddef.h>    /* we want wchar_t */
  145. #endif /* _XOPEN_SOURCE_EXTENDED */
  146.  
  147. /* X/Open and SVr4 specify that curses implements 'bool'.  However, C++ may also
  148.  * implement it.  If so, we must use the C++ compiler's type to avoid conflict
  149.  * with other interfaces.
  150.  *
  151.  * A further complication is that <stdbool.h> may declare 'bool' to be a
  152.  * different type, such as an enum which is not necessarily compatible with
  153.  * C++.  If we have <stdbool.h>, make 'bool' a macro, so users may #undef it.
  154.  * Otherwise, let it remain a typedef to avoid conflicts with other #define's.
  155.  * In either case, make a typedef for NCURSES_BOOL which can be used if needed
  156.  * from either C or C++.
  157.  */
  158.  
  159. #undef TRUE
  160. #define TRUE    1
  161.  
  162. #undef FALSE
  163. #define FALSE   0
  164.  
  165. typedef unsigned char NCURSES_BOOL;
  166.  
  167. #if defined(__cplusplus)    /* __cplusplus, etc. */
  168.  
  169. /* use the C++ compiler's bool type */
  170. #define NCURSES_BOOL bool
  171.  
  172. #else            /* c89, c99, etc. */
  173.  
  174. #if NCURSES_ENABLE_STDBOOL_H
  175. #include <stdbool.h>
  176. /* use whatever the C compiler decides bool really is */
  177. #define NCURSES_BOOL bool
  178. #else
  179. /* there is no predefined bool - use our own */
  180. #undef bool
  181. #define bool NCURSES_BOOL
  182. #endif
  183.  
  184. #endif /* !__cplusplus, etc. */
  185.  
  186. #ifdef __cplusplus
  187. extern "C" {
  188. #define NCURSES_CAST(type,value) static_cast<type>(value)
  189. #else
  190. #define NCURSES_CAST(type,value) (type)(value)
  191. #endif
  192.  
  193. /*
  194.  * X/Open attributes.  In the ncurses implementation, they are identical to the
  195.  * A_ attributes.
  196.  */
  197. #define WA_ATTRIBUTES    A_ATTRIBUTES
  198. #define WA_NORMAL    A_NORMAL
  199. #define WA_STANDOUT    A_STANDOUT
  200. #define WA_UNDERLINE    A_UNDERLINE
  201. #define WA_REVERSE    A_REVERSE
  202. #define WA_BLINK    A_BLINK
  203. #define WA_DIM        A_DIM
  204. #define WA_BOLD        A_BOLD
  205. #define WA_ALTCHARSET    A_ALTCHARSET
  206. #define WA_INVIS    A_INVIS
  207. #define WA_PROTECT    A_PROTECT
  208. #define WA_HORIZONTAL    A_HORIZONTAL
  209. #define WA_LEFT        A_LEFT
  210. #define WA_LOW        A_LOW
  211. #define WA_RIGHT    A_RIGHT
  212. #define WA_TOP        A_TOP
  213. #define WA_VERTICAL    A_VERTICAL
  214.  
  215. /* colors */
  216. #define COLOR_BLACK    0
  217. #define COLOR_RED    1
  218. #define COLOR_GREEN    2
  219. #define COLOR_YELLOW    3
  220. #define COLOR_BLUE    4
  221. #define COLOR_MAGENTA    5
  222. #define COLOR_CYAN    6
  223. #define COLOR_WHITE    7
  224.  
  225. /* line graphics */
  226.  
  227. #if 0 || 0
  228. NCURSES_WRAPPED_VAR(chtype*, acs_map);
  229. #define acs_map (_nc_acs_map())
  230. #else
  231. extern NCURSES_EXPORT_VAR(chtype) acs_map[];
  232. #endif
  233.  
  234. #define NCURSES_ACS(c)    (acs_map[NCURSES_CAST(unsigned char,c)])
  235.  
  236. /* VT100 symbols begin here */
  237. #define ACS_ULCORNER    NCURSES_ACS('l') /* upper left corner */
  238. #define ACS_LLCORNER    NCURSES_ACS('m') /* lower left corner */
  239. #define ACS_URCORNER    NCURSES_ACS('k') /* upper right corner */
  240. #define ACS_LRCORNER    NCURSES_ACS('j') /* lower right corner */
  241. #define ACS_LTEE    NCURSES_ACS('t') /* tee pointing right */
  242. #define ACS_RTEE    NCURSES_ACS('u') /* tee pointing left */
  243. #define ACS_BTEE    NCURSES_ACS('v') /* tee pointing up */
  244. #define ACS_TTEE    NCURSES_ACS('w') /* tee pointing down */
  245. #define ACS_HLINE    NCURSES_ACS('q') /* horizontal line */
  246. #define ACS_VLINE    NCURSES_ACS('x') /* vertical line */
  247. #define ACS_PLUS    NCURSES_ACS('n') /* large plus or crossover */
  248. #define ACS_S1        NCURSES_ACS('o') /* scan line 1 */
  249. #define ACS_S9        NCURSES_ACS('s') /* scan line 9 */
  250. #define ACS_DIAMOND    NCURSES_ACS('`') /* diamond */
  251. #define ACS_CKBOARD    NCURSES_ACS('a') /* checker board (stipple) */
  252. #define ACS_DEGREE    NCURSES_ACS('f') /* degree symbol */
  253. #define ACS_PLMINUS    NCURSES_ACS('g') /* plus/minus */
  254. #define ACS_BULLET    NCURSES_ACS('~') /* bullet */
  255. /* Teletype 5410v1 symbols begin here */
  256. #define ACS_LARROW    NCURSES_ACS(',') /* arrow pointing left */
  257. #define ACS_RARROW    NCURSES_ACS('+') /* arrow pointing right */
  258. #define ACS_DARROW    NCURSES_ACS('.') /* arrow pointing down */
  259. #define ACS_UARROW    NCURSES_ACS('-') /* arrow pointing up */
  260. #define ACS_BOARD    NCURSES_ACS('h') /* board of squares */
  261. #define ACS_LANTERN    NCURSES_ACS('i') /* lantern symbol */
  262. #define ACS_BLOCK    NCURSES_ACS('0') /* solid square block */
  263. /*
  264.  * These aren't documented, but a lot of System Vs have them anyway
  265.  * (you can spot pprryyzz{{||}} in a lot of AT&T terminfo strings).
  266.  * The ACS_names may not match AT&T's, our source didn't know them.
  267.  */
  268. #define ACS_S3        NCURSES_ACS('p') /* scan line 3 */
  269. #define ACS_S7        NCURSES_ACS('r') /* scan line 7 */
  270. #define ACS_LEQUAL    NCURSES_ACS('y') /* less/equal */
  271. #define ACS_GEQUAL    NCURSES_ACS('z') /* greater/equal */
  272. #define ACS_PI        NCURSES_ACS('{') /* Pi */
  273. #define ACS_NEQUAL    NCURSES_ACS('|') /* not equal */
  274. #define ACS_STERLING    NCURSES_ACS('}') /* UK pound sign */
  275.  
  276. /*
  277.  * Line drawing ACS names are of the form ACS_trbl, where t is the top, r
  278.  * is the right, b is the bottom, and l is the left.  t, r, b, and l might
  279.  * be B (blank), S (single), D (double), or T (thick).  The subset defined
  280.  * here only uses B and S.
  281.  */
  282. #define ACS_BSSB    ACS_ULCORNER
  283. #define ACS_SSBB    ACS_LLCORNER
  284. #define ACS_BBSS    ACS_URCORNER
  285. #define ACS_SBBS    ACS_LRCORNER
  286. #define ACS_SBSS    ACS_RTEE
  287. #define ACS_SSSB    ACS_LTEE
  288. #define ACS_SSBS    ACS_BTEE
  289. #define ACS_BSSS    ACS_TTEE
  290. #define ACS_BSBS    ACS_HLINE
  291. #define ACS_SBSB    ACS_VLINE
  292. #define ACS_SSSS    ACS_PLUS
  293.  
  294. #undef    ERR
  295. #define ERR     (-1)
  296.  
  297. #undef    OK
  298. #define OK      (0)
  299.  
  300. /* values for the _flags member */
  301. #define _SUBWIN         0x01    /* is this a sub-window? */
  302. #define _ENDLINE        0x02    /* is the window flush right? */
  303. #define _FULLWIN        0x04    /* is the window full-screen? */
  304. #define _SCROLLWIN      0x08    /* bottom edge is at screen bottom? */
  305. #define _ISPAD            0x10    /* is this window a pad? */
  306. #define _HASMOVED       0x20    /* has cursor moved since last refresh? */
  307. #define _WRAPPED        0x40    /* cursor was just wrappped */
  308.  
  309. /*
  310.  * this value is used in the firstchar and lastchar fields to mark
  311.  * unchanged lines
  312.  */
  313. #define _NOCHANGE       -1
  314.  
  315. /*
  316.  * this value is used in the oldindex field to mark lines created by insertions
  317.  * and scrolls.
  318.  */
  319. #define _NEWINDEX    -1
  320.  
  321. typedef struct screen  SCREEN;
  322. typedef struct _win_st WINDOW;
  323.  
  324. typedef    chtype    attr_t;        /* ...must be at least as wide as chtype */
  325.  
  326. #ifdef _XOPEN_SOURCE_EXTENDED
  327.  
  328. #if 0
  329. #ifdef mblen            /* libutf8.h defines it w/o undefining first */
  330. #undef mblen
  331. #endif
  332. #include <libutf8.h>
  333. #endif
  334.  
  335. #if 1
  336. #include <wchar.h>        /* ...to get mbstate_t, etc. */
  337. #endif
  338.  
  339. #if 0
  340. typedef unsigned short wchar_t1;
  341. #endif
  342.  
  343. #if 0
  344. typedef unsigned int wint_t1;
  345. #endif
  346.  
  347. #define CCHARW_MAX    5
  348. typedef struct
  349. {
  350.     attr_t    attr;
  351.     wchar_t    chars[CCHARW_MAX];
  352. #if 0
  353. #undef NCURSES_EXT_COLORS
  354. #define NCURSES_EXT_COLORS 20080209
  355.     int        ext_color;    /* color pair, must be more than 16-bits */
  356. #endif
  357. }
  358. cchar_t;
  359.  
  360. #endif /* _XOPEN_SOURCE_EXTENDED */
  361.  
  362. #if !NCURSES_OPAQUE
  363. struct ldat;
  364.  
  365. struct _win_st
  366. {
  367.     NCURSES_SIZE_T _cury, _curx; /* current cursor position */
  368.  
  369.     /* window location and size */
  370.     NCURSES_SIZE_T _maxy, _maxx; /* maximums of x and y, NOT window size */
  371.     NCURSES_SIZE_T _begy, _begx; /* screen coords of upper-left-hand corner */
  372.  
  373.     short   _flags;        /* window state flags */
  374.  
  375.     /* attribute tracking */
  376.     attr_t  _attrs;        /* current attribute for non-space character */
  377.     chtype  _bkgd;        /* current background char/attribute pair */
  378.  
  379.     /* option values set by user */
  380.     bool    _notimeout;    /* no time out on function-key entry? */
  381.     bool    _clear;        /* consider all data in the window invalid? */
  382.     bool    _leaveok;    /* OK to not reset cursor on exit? */
  383.     bool    _scroll;    /* OK to scroll this window? */
  384.     bool    _idlok;        /* OK to use insert/delete line? */
  385.     bool    _idcok;        /* OK to use insert/delete char? */
  386.     bool    _immed;        /* window in immed mode? (not yet used) */
  387.     bool    _sync;        /* window in sync mode? */
  388.     bool    _use_keypad;    /* process function keys into KEY_ symbols? */
  389.     int    _delay;        /* 0 = nodelay, <0 = blocking, >0 = delay */
  390.  
  391.     struct ldat *_line;    /* the actual line data */
  392.  
  393.     /* global screen state */
  394.     NCURSES_SIZE_T _regtop;    /* top line of scrolling region */
  395.     NCURSES_SIZE_T _regbottom; /* bottom line of scrolling region */
  396.  
  397.     /* these are used only if this is a sub-window */
  398.     int    _parx;        /* x coordinate of this window in parent */
  399.     int    _pary;        /* y coordinate of this window in parent */
  400.     WINDOW    *_parent;    /* pointer to parent if a sub-window */
  401.  
  402.     /* these are used only if this is a pad */
  403.     struct pdat
  404.     {
  405.         NCURSES_SIZE_T _pad_y,      _pad_x;
  406.         NCURSES_SIZE_T _pad_top,    _pad_left;
  407.         NCURSES_SIZE_T _pad_bottom, _pad_right;
  408.     } _pad;
  409.  
  410.     NCURSES_SIZE_T _yoffset; /* real begy is _begy + _yoffset */
  411.  
  412. #ifdef _XOPEN_SOURCE_EXTENDED
  413.     cchar_t  _bkgrnd;    /* current background char/attribute pair */
  414. #if 0
  415.     int    _color;        /* current color-pair for non-space character */
  416. #endif
  417. #endif
  418. };
  419. #endif /* NCURSES_OPAQUE */
  420.  
  421. /*
  422.  * This is an extension to support events...
  423.  */
  424. #if 1
  425. #ifdef NCURSES_WGETCH_EVENTS
  426. #if !defined(__BEOS__)        /* Fix _nc_timed_wait() on BEOS... */
  427. #  define NCURSES_EVENT_VERSION    1
  428. #endif    /* !defined(__BEOS__) */
  429.  
  430. /*
  431.  * Bits to set in _nc_event.data.flags
  432.  */
  433. #  define _NC_EVENT_TIMEOUT_MSEC    1
  434. #  define _NC_EVENT_FILE        2
  435. #  define _NC_EVENT_FILE_READABLE    2
  436. #  if 0                    /* Not supported yet... */
  437. #    define _NC_EVENT_FILE_WRITABLE    4
  438. #    define _NC_EVENT_FILE_EXCEPTION    8
  439. #  endif
  440.  
  441. typedef struct
  442. {
  443.     int type;
  444.     union
  445.     {
  446.     long timeout_msec;    /* _NC_EVENT_TIMEOUT_MSEC */
  447.     struct
  448.     {
  449.         unsigned int flags;
  450.         int fd;
  451.         unsigned int result;
  452.     } fev;                /* _NC_EVENT_FILE */
  453.     } data;
  454. } _nc_event;
  455.  
  456. typedef struct
  457. {
  458.     int count;
  459.     int result_flags;    /* _NC_EVENT_TIMEOUT_MSEC or _NC_EVENT_FILE_READABLE */
  460.     _nc_event *events[1];
  461. } _nc_eventlist;
  462.  
  463. extern NCURSES_EXPORT(int) wgetch_events(WINDOW *, _nc_eventlist *);    /* experimental */
  464. extern NCURSES_EXPORT(int) wgetnstr_events(WINDOW *,char *,int,_nc_eventlist *);/* experimental */
  465.  
  466. #endif /* NCURSES_WGETCH_EVENTS */
  467. #endif /* NCURSES_EXT_FUNCS */
  468.  
  469. /*
  470.  * GCC (and some other compilers) define '__attribute__'; we're using this
  471.  * macro to alert the compiler to flag inconsistencies in printf/scanf-like
  472.  * function calls.  Just in case '__attribute__' isn't defined, make a dummy.
  473.  * Old versions of G++ do not accept it anyway, at least not consistently with
  474.  * GCC.
  475.  */
  476. #if !(defined(__GNUC__) || defined(__GNUG__) || defined(__attribute__))
  477. #define __attribute__(p) /* nothing */
  478. #endif
  479.  
  480. /*
  481.  * We cannot define these in ncurses_cfg.h, since they require parameters to be
  482.  * passed (that is non-portable).  If you happen to be using gcc with warnings
  483.  * enabled, define
  484.  *    GCC_PRINTF
  485.  *    GCC_SCANF
  486.  * to improve checking of calls to printw(), etc.
  487.  */
  488. #ifndef GCC_PRINTFLIKE
  489. #if defined(GCC_PRINTF) && !defined(printf)
  490. #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
  491. #else
  492. #define GCC_PRINTFLIKE(fmt,var) /*nothing*/
  493. #endif
  494. #endif
  495.  
  496. #ifndef GCC_SCANFLIKE
  497. #if defined(GCC_SCANF) && !defined(scanf)
  498. #define GCC_SCANFLIKE(fmt,var)  __attribute__((format(scanf,fmt,var)))
  499. #else
  500. #define GCC_SCANFLIKE(fmt,var)  /*nothing*/
  501. #endif
  502. #endif
  503.  
  504. #ifndef    GCC_NORETURN
  505. #define    GCC_NORETURN /* nothing */
  506. #endif
  507.  
  508. #ifndef    GCC_UNUSED
  509. #define    GCC_UNUSED /* nothing */
  510. #endif
  511.  
  512. /*
  513.  * Function prototypes.  This is the complete X/Open Curses list of required
  514.  * functions.  Those marked `generated' will have sources generated from the
  515.  * macro definitions later in this file, in order to satisfy XPG4.2
  516.  * requirements.
  517.  */
  518.  
  519. extern NCURSES_EXPORT(int) addch (const chtype);            /* generated */
  520. extern NCURSES_EXPORT(int) addchnstr (const chtype *, int);        /* generated */
  521. extern NCURSES_EXPORT(int) addchstr (const chtype *);            /* generated */
  522. extern NCURSES_EXPORT(int) addnstr (const char *, int);            /* generated */
  523. extern NCURSES_EXPORT(int) addstr (const char *);            /* generated */
  524. extern NCURSES_EXPORT(int) attroff (NCURSES_ATTR_T);            /* generated */
  525. extern NCURSES_EXPORT(int) attron (NCURSES_ATTR_T);            /* generated */
  526. extern NCURSES_EXPORT(int) attrset (NCURSES_ATTR_T);            /* generated */
  527. extern NCURSES_EXPORT(int) attr_get (attr_t *, short *, void *);    /* generated */
  528. extern NCURSES_EXPORT(int) attr_off (attr_t, void *);            /* generated */
  529. extern NCURSES_EXPORT(int) attr_on (attr_t, void *);            /* generated */
  530. extern NCURSES_EXPORT(int) attr_set (attr_t, short, void *);        /* generated */
  531. extern NCURSES_EXPORT(int) baudrate (void);                /* implemented */
  532. extern NCURSES_EXPORT(int) beep  (void);                /* implemented */
  533. extern NCURSES_EXPORT(int) bkgd (chtype);                /* generated */
  534. extern NCURSES_EXPORT(void) bkgdset (chtype);                /* generated */
  535. extern NCURSES_EXPORT(int) border (chtype,chtype,chtype,chtype,chtype,chtype,chtype,chtype);    /* generated */
  536. extern NCURSES_EXPORT(int) box (WINDOW *, chtype, chtype);        /* generated */
  537. extern NCURSES_EXPORT(bool) can_change_color (void);            /* implemented */
  538. extern NCURSES_EXPORT(int) cbreak (void);                /* implemented */
  539. extern NCURSES_EXPORT(int) chgat (int, attr_t, short, const void *);    /* generated */
  540. extern NCURSES_EXPORT(int) clear (void);                /* generated */
  541. extern NCURSES_EXPORT(int) clearok (WINDOW *,bool);            /* implemented */
  542. extern NCURSES_EXPORT(int) clrtobot (void);                /* generated */
  543. extern NCURSES_EXPORT(int) clrtoeol (void);                /* generated */
  544. extern NCURSES_EXPORT(int) color_content (short,short*,short*,short*);    /* implemented */
  545. extern NCURSES_EXPORT(int) color_set (short,void*);            /* generated */
  546. extern NCURSES_EXPORT(int) COLOR_PAIR (int);                /* generated */
  547. extern NCURSES_EXPORT(int) copywin (const WINDOW*,WINDOW*,int,int,int,int,int,int,int);    /* implemented */
  548. extern NCURSES_EXPORT(int) curs_set (int);                /* implemented */
  549. extern NCURSES_EXPORT(int) def_prog_mode (void);            /* implemented */
  550. extern NCURSES_EXPORT(int) def_shell_mode (void);            /* implemented */
  551. extern NCURSES_EXPORT(int) delay_output (int);                /* implemented */
  552. extern NCURSES_EXPORT(int) delch (void);                /* generated */
  553. extern NCURSES_EXPORT(void) delscreen (SCREEN *);            /* implemented */
  554. extern NCURSES_EXPORT(int) delwin (WINDOW *);                /* implemented */
  555. extern NCURSES_EXPORT(int) deleteln (void);                /* generated */
  556. extern NCURSES_EXPORT(WINDOW *) derwin (WINDOW *,int,int,int,int);    /* implemented */
  557. extern NCURSES_EXPORT(int) doupdate (void);                /* implemented */
  558. extern NCURSES_EXPORT(WINDOW *) dupwin (WINDOW *);            /* implemented */
  559. extern NCURSES_EXPORT(int) echo (void);                    /* implemented */
  560. extern NCURSES_EXPORT(int) echochar (const chtype);            /* generated */
  561. extern NCURSES_EXPORT(int) erase (void);                /* generated */
  562. extern NCURSES_EXPORT(int) endwin (void);                /* implemented */
  563. extern NCURSES_EXPORT(char) erasechar (void);                /* implemented */
  564. extern NCURSES_EXPORT(void) filter (void);                /* implemented */
  565. extern NCURSES_EXPORT(int) flash (void);                /* implemented */
  566. extern NCURSES_EXPORT(int) flushinp (void);                /* implemented */
  567. extern NCURSES_EXPORT(chtype) getbkgd (WINDOW *);            /* generated */
  568. extern NCURSES_EXPORT(int) getch (void);                /* generated */
  569. extern NCURSES_EXPORT(int) getnstr (char *, int);            /* generated */
  570. extern NCURSES_EXPORT(int) getstr (char *);                /* generated */
  571. extern NCURSES_EXPORT(WINDOW *) getwin (FILE *);            /* implemented */
  572. extern NCURSES_EXPORT(int) halfdelay (int);                /* implemented */
  573. extern NCURSES_EXPORT(bool) has_colors (void);                /* implemented */
  574. extern NCURSES_EXPORT(bool) has_ic (void);                /* implemented */
  575. extern NCURSES_EXPORT(bool) has_il (void);                /* implemented */
  576. extern NCURSES_EXPORT(int) hline (chtype, int);                /* generated */
  577. extern NCURSES_EXPORT(void) idcok (WINDOW *, bool);            /* implemented */
  578. extern NCURSES_EXPORT(int) idlok (WINDOW *, bool);            /* implemented */
  579. extern NCURSES_EXPORT(void) immedok (WINDOW *, bool);            /* implemented */
  580. extern NCURSES_EXPORT(chtype) inch (void);                /* generated */
  581. extern NCURSES_EXPORT(int) inchnstr (chtype *, int);            /* generated */
  582. extern NCURSES_EXPORT(int) inchstr (chtype *);                /* generated */
  583. extern NCURSES_EXPORT(WINDOW *) initscr (void);                /* implemented */
  584. extern NCURSES_EXPORT(int) init_color (short,short,short,short);    /* implemented */
  585. extern NCURSES_EXPORT(int) init_pair (short,short,short);        /* implemented */
  586. extern NCURSES_EXPORT(int) innstr (char *, int);            /* generated */
  587. extern NCURSES_EXPORT(int) insch (chtype);                /* generated */
  588. extern NCURSES_EXPORT(int) insdelln (int);                /* generated */
  589. extern NCURSES_EXPORT(int) insertln (void);                /* generated */
  590. extern NCURSES_EXPORT(int) insnstr (const char *, int);            /* generated */
  591. extern NCURSES_EXPORT(int) insstr (const char *);            /* generated */
  592. extern NCURSES_EXPORT(int) instr (char *);                /* generated */
  593. extern NCURSES_EXPORT(int) intrflush (WINDOW *,bool);            /* implemented */
  594. extern NCURSES_EXPORT(bool) isendwin (void);                /* implemented */
  595. extern NCURSES_EXPORT(bool) is_linetouched (WINDOW *,int);        /* implemented */
  596. extern NCURSES_EXPORT(bool) is_wintouched (WINDOW *);            /* implemented */
  597. extern NCURSES_EXPORT(NCURSES_CONST char *) keyname (int);        /* implemented */
  598. extern NCURSES_EXPORT(int) keypad (WINDOW *,bool);            /* implemented */
  599. extern NCURSES_EXPORT(char) killchar (void);                /* implemented */
  600. extern NCURSES_EXPORT(int) leaveok (WINDOW *,bool);            /* implemented */
  601. extern NCURSES_EXPORT(char *) longname (void);                /* implemented */
  602. extern NCURSES_EXPORT(int) meta (WINDOW *,bool);            /* implemented */
  603. extern NCURSES_EXPORT(int) move (int, int);                /* generated */
  604. extern NCURSES_EXPORT(int) mvaddch (int, int, const chtype);        /* generated */
  605. extern NCURSES_EXPORT(int) mvaddchnstr (int, int, const chtype *, int);    /* generated */
  606. extern NCURSES_EXPORT(int) mvaddchstr (int, int, const chtype *);    /* generated */
  607. extern NCURSES_EXPORT(int) mvaddnstr (int, int, const char *, int);    /* generated */
  608. extern NCURSES_EXPORT(int) mvaddstr (int, int, const char *);        /* generated */
  609. extern NCURSES_EXPORT(int) mvchgat (int, int, int, attr_t, short, const void *);    /* generated */
  610. extern NCURSES_EXPORT(int) mvcur (int,int,int,int);            /* implemented */
  611. extern NCURSES_EXPORT(int) mvdelch (int, int);                /* generated */
  612. extern NCURSES_EXPORT(int) mvderwin (WINDOW *, int, int);        /* implemented */
  613. extern NCURSES_EXPORT(int) mvgetch (int, int);                /* generated */
  614. extern NCURSES_EXPORT(int) mvgetnstr (int, int, char *, int);        /* generated */
  615. extern NCURSES_EXPORT(int) mvgetstr (int, int, char *);            /* generated */
  616. extern NCURSES_EXPORT(int) mvhline (int, int, chtype, int);        /* generated */
  617. extern NCURSES_EXPORT(chtype) mvinch (int, int);            /* generated */
  618. extern NCURSES_EXPORT(int) mvinchnstr (int, int, chtype *, int);    /* generated */
  619. extern NCURSES_EXPORT(int) mvinchstr (int, int, chtype *);        /* generated */
  620. extern NCURSES_EXPORT(int) mvinnstr (int, int, char *, int);        /* generated */
  621. extern NCURSES_EXPORT(int) mvinsch (int, int, chtype);            /* generated */
  622. extern NCURSES_EXPORT(int) mvinsnstr (int, int, const char *, int);    /* generated */
  623. extern NCURSES_EXPORT(int) mvinsstr (int, int, const char *);        /* generated */
  624. extern NCURSES_EXPORT(int) mvinstr (int, int, char *);            /* generated */
  625. extern NCURSES_EXPORT(int) mvprintw (int,int, const char *,...)        /* implemented */
  626.         GCC_PRINTFLIKE(3,4);
  627. extern NCURSES_EXPORT(int) mvscanw (int,int, NCURSES_CONST char *,...)    /* implemented */
  628.         GCC_SCANFLIKE(3,4);
  629. extern NCURSES_EXPORT(int) mvvline (int, int, chtype, int);        /* generated */
  630. extern NCURSES_EXPORT(int) mvwaddch (WINDOW *, int, int, const chtype);    /* generated */
  631. extern NCURSES_EXPORT(int) mvwaddchnstr (WINDOW *, int, int, const chtype *, int);/* generated */
  632. extern NCURSES_EXPORT(int) mvwaddchstr (WINDOW *, int, int, const chtype *);    /* generated */
  633. extern NCURSES_EXPORT(int) mvwaddnstr (WINDOW *, int, int, const char *, int);    /* generated */
  634. extern NCURSES_EXPORT(int) mvwaddstr (WINDOW *, int, int, const char *);    /* generated */
  635. extern NCURSES_EXPORT(int) mvwchgat (WINDOW *, int, int, int, attr_t, short, const void *);/* generated */
  636. extern NCURSES_EXPORT(int) mvwdelch (WINDOW *, int, int);        /* generated */
  637. extern NCURSES_EXPORT(int) mvwgetch (WINDOW *, int, int);        /* generated */
  638. extern NCURSES_EXPORT(int) mvwgetnstr (WINDOW *, int, int, char *, int);    /* generated */
  639. extern NCURSES_EXPORT(int) mvwgetstr (WINDOW *, int, int, char *);    /* generated */
  640. extern NCURSES_EXPORT(int) mvwhline (WINDOW *, int, int, chtype, int);    /* generated */
  641. extern NCURSES_EXPORT(int) mvwin (WINDOW *,int,int);            /* implemented */
  642. extern NCURSES_EXPORT(chtype) mvwinch (WINDOW *, int, int);            /* generated */
  643. extern NCURSES_EXPORT(int) mvwinchnstr (WINDOW *, int, int, chtype *, int);    /* generated */
  644. extern NCURSES_EXPORT(int) mvwinchstr (WINDOW *, int, int, chtype *);        /* generated */
  645. extern NCURSES_EXPORT(int) mvwinnstr (WINDOW *, int, int, char *, int);        /* generated */
  646. extern NCURSES_EXPORT(int) mvwinsch (WINDOW *, int, int, chtype);        /* generated */
  647. extern NCURSES_EXPORT(int) mvwinsnstr (WINDOW *, int, int, const char *, int);    /* generated */
  648. extern NCURSES_EXPORT(int) mvwinsstr (WINDOW *, int, int, const char *);        /* generated */
  649. extern NCURSES_EXPORT(int) mvwinstr (WINDOW *, int, int, char *);        /* generated */
  650. extern NCURSES_EXPORT(int) mvwprintw (WINDOW*,int,int, const char *,...)    /* implemented */
  651.         GCC_PRINTFLIKE(4,5);
  652. extern NCURSES_EXPORT(int) mvwscanw (WINDOW *,int,int, NCURSES_CONST char *,...)    /* implemented */
  653.         GCC_SCANFLIKE(4,5);
  654. extern NCURSES_EXPORT(int) mvwvline (WINDOW *,int, int, chtype, int);    /* generated */
  655. extern NCURSES_EXPORT(int) napms (int);                    /* implemented */
  656. extern NCURSES_EXPORT(WINDOW *) newpad (int,int);                /* implemented */
  657. extern NCURSES_EXPORT(SCREEN *) newterm (NCURSES_CONST char *,FILE *,FILE *);    /* implemented */
  658. extern NCURSES_EXPORT(WINDOW *) newwin (int,int,int,int);            /* implemented */
  659. extern NCURSES_EXPORT(int) nl (void);                    /* implemented */
  660. extern NCURSES_EXPORT(int) nocbreak (void);                /* implemented */
  661. extern NCURSES_EXPORT(int) nodelay (WINDOW *,bool);            /* implemented */
  662. extern NCURSES_EXPORT(int) noecho (void);                /* implemented */
  663. extern NCURSES_EXPORT(int) nonl (void);                    /* implemented */
  664. extern NCURSES_EXPORT(void) noqiflush (void);                /* implemented */
  665. extern NCURSES_EXPORT(int) noraw (void);                /* implemented */
  666. extern NCURSES_EXPORT(int) notimeout (WINDOW *,bool);            /* implemented */
  667. extern NCURSES_EXPORT(int) overlay (const WINDOW*,WINDOW *);        /* implemented */
  668. extern NCURSES_EXPORT(int) overwrite (const WINDOW*,WINDOW *);        /* implemented */
  669. extern NCURSES_EXPORT(int) pair_content (short,short*,short*);        /* implemented */
  670. extern NCURSES_EXPORT(int) PAIR_NUMBER (int);                /* generated */
  671. extern NCURSES_EXPORT(int) pechochar (WINDOW *, const chtype);        /* implemented */
  672. extern NCURSES_EXPORT(int) pnoutrefresh (WINDOW*,int,int,int,int,int,int);/* implemented */
  673. extern NCURSES_EXPORT(int) prefresh (WINDOW *,int,int,int,int,int,int);    /* implemented */
  674. extern NCURSES_EXPORT(int) printw (const char *,...)            /* implemented */
  675.         GCC_PRINTFLIKE(1,2);
  676. extern NCURSES_EXPORT(int) putwin (WINDOW *, FILE *);            /* implemented */
  677. extern NCURSES_EXPORT(void) qiflush (void);                /* implemented */
  678. extern NCURSES_EXPORT(int) raw (void);                    /* implemented */
  679. extern NCURSES_EXPORT(int) redrawwin (WINDOW *);            /* generated */
  680. extern NCURSES_EXPORT(int) refresh (void);                /* generated */
  681. extern NCURSES_EXPORT(int) resetty (void);                /* implemented */
  682. extern NCURSES_EXPORT(int) reset_prog_mode (void);            /* implemented */
  683. extern NCURSES_EXPORT(int) reset_shell_mode (void);            /* implemented */
  684. extern NCURSES_EXPORT(int) ripoffline (int, int (*)(WINDOW *, int));    /* implemented */
  685. extern NCURSES_EXPORT(int) savetty (void);                /* implemented */
  686. extern NCURSES_EXPORT(int) scanw (NCURSES_CONST char *,...)        /* implemented */
  687.         GCC_SCANFLIKE(1,2);
  688. extern NCURSES_EXPORT(int) scr_dump (const char *);            /* implemented */
  689. extern NCURSES_EXPORT(int) scr_init (const char *);            /* implemented */
  690. extern NCURSES_EXPORT(int) scrl (int);                    /* generated */
  691. extern NCURSES_EXPORT(int) scroll (WINDOW *);                /* generated */
  692. extern NCURSES_EXPORT(int) scrollok (WINDOW *,bool);            /* implemented */
  693. extern NCURSES_EXPORT(int) scr_restore (const char *);            /* implemented */
  694. extern NCURSES_EXPORT(int) scr_set (const char *);            /* implemented */
  695. extern NCURSES_EXPORT(int) setscrreg (int,int);                /* generated */
  696. extern NCURSES_EXPORT(SCREEN *) set_term (SCREEN *);            /* implemented */
  697. extern NCURSES_EXPORT(int) slk_attroff (const chtype);            /* implemented */
  698. extern NCURSES_EXPORT(int) slk_attr_off (const attr_t, void *);        /* generated:WIDEC */
  699. extern NCURSES_EXPORT(int) slk_attron (const chtype);            /* implemented */
  700. extern NCURSES_EXPORT(int) slk_attr_on (attr_t,void*);            /* generated:WIDEC */
  701. extern NCURSES_EXPORT(int) slk_attrset (const chtype);            /* implemented */
  702. extern NCURSES_EXPORT(attr_t) slk_attr (void);                /* implemented */
  703. extern NCURSES_EXPORT(int) slk_attr_set (const attr_t,short,void*);    /* implemented */
  704. extern NCURSES_EXPORT(int) slk_clear (void);                /* implemented */
  705. extern NCURSES_EXPORT(int) slk_color (short);                /* implemented */
  706. extern NCURSES_EXPORT(int) slk_init (int);                /* implemented */
  707. extern NCURSES_EXPORT(char *) slk_label (int);                /* implemented */
  708. extern NCURSES_EXPORT(int) slk_noutrefresh (void);            /* implemented */
  709. extern NCURSES_EXPORT(int) slk_refresh (void);                /* implemented */
  710. extern NCURSES_EXPORT(int) slk_restore (void);                /* implemented */
  711. extern NCURSES_EXPORT(int) slk_set (int,const char *,int);        /* implemented */
  712. extern NCURSES_EXPORT(int) slk_touch (void);                /* implemented */
  713. extern NCURSES_EXPORT(int) standout (void);                /* generated */
  714. extern NCURSES_EXPORT(int) standend (void);                /* generated */
  715. extern NCURSES_EXPORT(int) start_color (void);                /* implemented */
  716. extern NCURSES_EXPORT(WINDOW *) subpad (WINDOW *, int, int, int, int);    /* implemented */
  717. extern NCURSES_EXPORT(WINDOW *) subwin (WINDOW *, int, int, int, int);    /* implemented */
  718. extern NCURSES_EXPORT(int) syncok (WINDOW *, bool);            /* implemented */
  719. extern NCURSES_EXPORT(chtype) termattrs (void);                /* implemented */
  720. extern NCURSES_EXPORT(char *) termname (void);                /* implemented */
  721. extern NCURSES_EXPORT(void) timeout (int);                /* generated */
  722. extern NCURSES_EXPORT(int) touchline (WINDOW *, int, int);        /* generated */
  723. extern NCURSES_EXPORT(int) touchwin (WINDOW *);                /* generated */
  724. extern NCURSES_EXPORT(int) typeahead (int);                /* implemented */
  725. extern NCURSES_EXPORT(int) ungetch (int);                /* implemented */
  726. extern NCURSES_EXPORT(int) untouchwin (WINDOW *);            /* generated */
  727. extern NCURSES_EXPORT(void) use_env (bool);                /* implemented */
  728. extern NCURSES_EXPORT(int) vidattr (chtype);                /* implemented */
  729. extern NCURSES_EXPORT(int) vidputs (chtype, int (*)(int));        /* implemented */
  730. extern NCURSES_EXPORT(int) vline (chtype, int);                /* generated */
  731. extern NCURSES_EXPORT(int) vwprintw (WINDOW *, const char *,va_list);    /* implemented */
  732. extern NCURSES_EXPORT(int) vw_printw (WINDOW *, const char *,va_list);    /* generated */
  733. extern NCURSES_EXPORT(int) vwscanw (WINDOW *, NCURSES_CONST char *,va_list);    /* implemented */
  734. extern NCURSES_EXPORT(int) vw_scanw (WINDOW *, NCURSES_CONST char *,va_list);    /* generated */
  735. extern NCURSES_EXPORT(int) waddch (WINDOW *, const chtype);        /* implemented */
  736. extern NCURSES_EXPORT(int) waddchnstr (WINDOW *,const chtype *,int);    /* implemented */
  737. extern NCURSES_EXPORT(int) waddchstr (WINDOW *,const chtype *);        /* generated */
  738. extern NCURSES_EXPORT(int) waddnstr (WINDOW *,const char *,int);    /* implemented */
  739. extern NCURSES_EXPORT(int) waddstr (WINDOW *,const char *);        /* generated */
  740. extern NCURSES_EXPORT(int) wattron (WINDOW *, int);            /* generated */
  741. extern NCURSES_EXPORT(int) wattroff (WINDOW *, int);            /* generated */
  742. extern NCURSES_EXPORT(int) wattrset (WINDOW *, int);            /* generated */
  743. extern NCURSES_EXPORT(int) wattr_get (WINDOW *, attr_t *, short *, void *);    /* generated */
  744. extern NCURSES_EXPORT(int) wattr_on (WINDOW *, attr_t, void *);        /* implemented */
  745. extern NCURSES_EXPORT(int) wattr_off (WINDOW *, attr_t, void *);    /* implemented */
  746. extern NCURSES_EXPORT(int) wattr_set (WINDOW *, attr_t, short, void *);    /* generated */
  747. extern NCURSES_EXPORT(int) wbkgd (WINDOW *, chtype);            /* implemented */
  748. extern NCURSES_EXPORT(void) wbkgdset (WINDOW *,chtype);            /* implemented */
  749. extern NCURSES_EXPORT(int) wborder (WINDOW *,chtype,chtype,chtype,chtype,chtype,chtype,chtype,chtype);    /* implemented */
  750. extern NCURSES_EXPORT(int) wchgat (WINDOW *, int, attr_t, short, const void *);/* implemented */
  751. extern NCURSES_EXPORT(int) wclear (WINDOW *);                /* implemented */
  752. extern NCURSES_EXPORT(int) wclrtobot (WINDOW *);            /* implemented */
  753. extern NCURSES_EXPORT(int) wclrtoeol (WINDOW *);            /* implemented */
  754. extern NCURSES_EXPORT(int) wcolor_set (WINDOW*,short,void*);        /* implemented */
  755. extern NCURSES_EXPORT(void) wcursyncup (WINDOW *);            /* implemented */
  756. extern NCURSES_EXPORT(int) wdelch (WINDOW *);                /* implemented */
  757. extern NCURSES_EXPORT(int) wdeleteln (WINDOW *);            /* generated */
  758. extern NCURSES_EXPORT(int) wechochar (WINDOW *, const chtype);        /* implemented */
  759. extern NCURSES_EXPORT(int) werase (WINDOW *);                /* implemented */
  760. extern NCURSES_EXPORT(int) wgetch (WINDOW *);                /* implemented */
  761. extern NCURSES_EXPORT(int) wgetnstr (WINDOW *,char *,int);        /* implemented */
  762. extern NCURSES_EXPORT(int) wgetstr (WINDOW *, char *);            /* generated */
  763. extern NCURSES_EXPORT(int) whline (WINDOW *, chtype, int);        /* implemented */
  764. extern NCURSES_EXPORT(chtype) winch (WINDOW *);                /* implemented */
  765. extern NCURSES_EXPORT(int) winchnstr (WINDOW *, chtype *, int);        /* implemented */
  766. extern NCURSES_EXPORT(int) winchstr (WINDOW *, chtype *);        /* generated */
  767. extern NCURSES_EXPORT(int) winnstr (WINDOW *, char *, int);        /* implemented */
  768. extern NCURSES_EXPORT(int) winsch (WINDOW *, chtype);            /* implemented */
  769. extern NCURSES_EXPORT(int) winsdelln (WINDOW *,int);            /* implemented */
  770. extern NCURSES_EXPORT(int) winsertln (WINDOW *);            /* generated */
  771. extern NCURSES_EXPORT(int) winsnstr (WINDOW *, const char *,int);    /* implemented */
  772. extern NCURSES_EXPORT(int) winsstr (WINDOW *, const char *);        /* generated */
  773. extern NCURSES_EXPORT(int) winstr (WINDOW *, char *);            /* generated */
  774. extern NCURSES_EXPORT(int) wmove (WINDOW *,int,int);            /* implemented */
  775. extern NCURSES_EXPORT(int) wnoutrefresh (WINDOW *);            /* implemented */
  776. extern NCURSES_EXPORT(int) wprintw (WINDOW *, const char *,...)        /* implemented */
  777.         GCC_PRINTFLIKE(2,3);
  778. extern NCURSES_EXPORT(int) wredrawln (WINDOW *,int,int);        /* implemented */
  779. extern NCURSES_EXPORT(int) wrefresh (WINDOW *);                /* implemented */
  780. extern NCURSES_EXPORT(int) wscanw (WINDOW *, NCURSES_CONST char *,...)    /* implemented */
  781.         GCC_SCANFLIKE(2,3);
  782. extern NCURSES_EXPORT(int) wscrl (WINDOW *,int);            /* implemented */
  783. extern NCURSES_EXPORT(int) wsetscrreg (WINDOW *,int,int);        /* implemented */
  784. extern NCURSES_EXPORT(int) wstandout (WINDOW *);            /* generated */
  785. extern NCURSES_EXPORT(int) wstandend (WINDOW *);            /* generated */
  786. extern NCURSES_EXPORT(void) wsyncdown (WINDOW *);            /* implemented */
  787. extern NCURSES_EXPORT(void) wsyncup (WINDOW *);                /* implemented */
  788. extern NCURSES_EXPORT(void) wtimeout (WINDOW *,int);            /* implemented */
  789. extern NCURSES_EXPORT(int) wtouchln (WINDOW *,int,int,int);        /* implemented */
  790. extern NCURSES_EXPORT(int) wvline (WINDOW *,chtype,int);        /* implemented */
  791.  
  792. /*
  793.  * These are also declared in <term.h>:
  794.  */
  795. extern NCURSES_EXPORT(int) tigetflag (NCURSES_CONST char *);        /* implemented */
  796. extern NCURSES_EXPORT(int) tigetnum (NCURSES_CONST char *);        /* implemented */
  797. extern NCURSES_EXPORT(char *) tigetstr (NCURSES_CONST char *);        /* implemented */
  798. extern NCURSES_EXPORT(int) putp (const char *);                /* implemented */
  799.  
  800. #if NCURSES_TPARM_VARARGS
  801. extern NCURSES_EXPORT(char *) tparm (NCURSES_CONST char *, ...);    /* special */
  802. #else
  803. extern NCURSES_EXPORT(char *) tparm (NCURSES_CONST char *, long,long,long,long,long,long,long,long,long);    /* special */
  804. extern NCURSES_EXPORT(char *) tparm_varargs (NCURSES_CONST char *, ...);    /* special */
  805. #endif
  806.  
  807. /*
  808.  * These functions are not in X/Open, but we use them in macro definitions:
  809.  */
  810. extern NCURSES_EXPORT(int) getattrs (const WINDOW *);            /* generated */
  811. extern NCURSES_EXPORT(int) getcurx (const WINDOW *);            /* generated */
  812. extern NCURSES_EXPORT(int) getcury (const WINDOW *);            /* generated */
  813. extern NCURSES_EXPORT(int) getbegx (const WINDOW *);            /* generated */
  814. extern NCURSES_EXPORT(int) getbegy (const WINDOW *);            /* generated */
  815. extern NCURSES_EXPORT(int) getmaxx (const WINDOW *);            /* generated */
  816. extern NCURSES_EXPORT(int) getmaxy (const WINDOW *);            /* generated */
  817. extern NCURSES_EXPORT(int) getparx (const WINDOW *);            /* generated */
  818. extern NCURSES_EXPORT(int) getpary (const WINDOW *);            /* generated */
  819.  
  820. /*
  821.  * vid_attr() was implemented originally based on a draft of X/Open curses.
  822.  */
  823. #ifndef _XOPEN_SOURCE_EXTENDED
  824. #define vid_attr(a,pair,opts) vidattr(a)
  825. #endif
  826.  
  827. /*
  828.  * These functions are extensions - not in X/Open Curses.
  829.  */
  830. #if 1
  831. #undef  NCURSES_EXT_FUNCS
  832. #define NCURSES_EXT_FUNCS 20080209
  833. typedef int (*NCURSES_CALLBACK)(WINDOW *, void *);
  834. extern NCURSES_EXPORT(bool) is_term_resized (int, int);
  835. extern NCURSES_EXPORT(char *) keybound (int, int);
  836. extern NCURSES_EXPORT(const char *) curses_version (void);
  837. extern NCURSES_EXPORT(int) assume_default_colors (int, int);
  838. extern NCURSES_EXPORT(int) define_key (const char *, int);
  839. extern NCURSES_EXPORT(int) key_defined (const char *);
  840. extern NCURSES_EXPORT(int) keyok (int, bool);
  841. extern NCURSES_EXPORT(int) resize_term (int, int);
  842. extern NCURSES_EXPORT(int) resizeterm (int, int);
  843. extern NCURSES_EXPORT(int) set_escdelay (int);
  844. extern NCURSES_EXPORT(int) set_tabsize (int);
  845. extern NCURSES_EXPORT(int) use_default_colors (void);
  846. extern NCURSES_EXPORT(int) use_extended_names (bool);
  847. extern NCURSES_EXPORT(int) use_legacy_coding (int);
  848. extern NCURSES_EXPORT(int) use_screen (SCREEN *, NCURSES_CALLBACK, void *);
  849. extern NCURSES_EXPORT(int) use_window (WINDOW *, NCURSES_CALLBACK, void *);
  850. extern NCURSES_EXPORT(int) wresize (WINDOW *, int, int);
  851. extern NCURSES_EXPORT(void) nofilter(void);
  852.  
  853. /*
  854.  * These extensions provide access to information stored in the WINDOW even
  855.  * when NCURSES_OPAQUE is set:
  856.  */
  857. extern NCURSES_EXPORT(WINDOW *) wgetparent (const WINDOW *);    /* generated */
  858. extern NCURSES_EXPORT(bool) is_cleared (const WINDOW *);    /* generated */
  859. extern NCURSES_EXPORT(bool) is_idcok (const WINDOW *);        /* generated */
  860. extern NCURSES_EXPORT(bool) is_idlok (const WINDOW *);        /* generated */
  861. extern NCURSES_EXPORT(bool) is_immedok (const WINDOW *);    /* generated */
  862. extern NCURSES_EXPORT(bool) is_keypad (const WINDOW *);        /* generated */
  863. extern NCURSES_EXPORT(bool) is_leaveok (const WINDOW *);    /* generated */
  864. extern NCURSES_EXPORT(bool) is_nodelay (const WINDOW *);    /* generated */
  865. extern NCURSES_EXPORT(bool) is_notimeout (const WINDOW *);    /* generated */
  866. extern NCURSES_EXPORT(bool) is_scrollok (const WINDOW *);    /* generated */
  867. extern NCURSES_EXPORT(bool) is_syncok (const WINDOW *);        /* generated */
  868. extern NCURSES_EXPORT(int) wgetscrreg (const WINDOW *, int *, int *); /* generated */
  869.  
  870. #else
  871. #define curses_version() NCURSES_VERSION
  872. #endif
  873.  
  874. /* attributes */
  875.  
  876. #define NCURSES_ATTR_SHIFT       8
  877. #define NCURSES_BITS(mask,shift) ((mask) << ((shift) + NCURSES_ATTR_SHIFT))
  878.  
  879. #define A_NORMAL    (1UL - 1UL)
  880. #define A_ATTRIBUTES    NCURSES_BITS(~(1UL - 1UL),0)
  881. #define A_CHARTEXT    (NCURSES_BITS(1UL,0) - 1UL)
  882. #define A_COLOR        NCURSES_BITS(((1UL) << 8) - 1UL,0)
  883. #define A_STANDOUT    NCURSES_BITS(1UL,8)
  884. #define A_UNDERLINE    NCURSES_BITS(1UL,9)
  885. #define A_REVERSE    NCURSES_BITS(1UL,10)
  886. #define A_BLINK        NCURSES_BITS(1UL,11)
  887. #define A_DIM        NCURSES_BITS(1UL,12)
  888. #define A_BOLD        NCURSES_BITS(1UL,13)
  889. #define A_ALTCHARSET    NCURSES_BITS(1UL,14)
  890. #define A_INVIS        NCURSES_BITS(1UL,15)
  891. #define A_PROTECT    NCURSES_BITS(1UL,16)
  892. #define A_HORIZONTAL    NCURSES_BITS(1UL,17)
  893. #define A_LEFT        NCURSES_BITS(1UL,18)
  894. #define A_LOW        NCURSES_BITS(1UL,19)
  895. #define A_RIGHT        NCURSES_BITS(1UL,20)
  896. #define A_TOP        NCURSES_BITS(1UL,21)
  897. #define A_VERTICAL    NCURSES_BITS(1UL,22)
  898.  
  899. /*
  900.  * Most of the pseudo functions are macros that either provide compatibility
  901.  * with older versions of curses, or provide inline functionality to improve
  902.  * performance.
  903.  */
  904.  
  905. /*
  906.  * These pseudo functions are always implemented as macros:
  907.  */
  908.  
  909. #define getyx(win,y,x)       (y = getcury(win), x = getcurx(win))
  910. #define getbegyx(win,y,x)    (y = getbegy(win), x = getbegx(win))
  911. #define getmaxyx(win,y,x)    (y = getmaxy(win), x = getmaxx(win))
  912. #define getparyx(win,y,x)    (y = getpary(win), x = getparx(win))
  913.  
  914. #define getsyx(y,x) do { if (is_leaveok(newscr)) \
  915.                 (y) = (x) = -1; \
  916.              else \
  917.                  getyx(newscr,(y), (x)); \
  918.             } while(0)
  919.  
  920. #define setsyx(y,x) do { if ((y) == -1 && (x) == -1) \
  921.                 leaveok(newscr, TRUE); \
  922.              else { \
  923.                 leaveok(newscr, FALSE); \
  924.                 wmove(newscr, (y), (x)); \
  925.             } \
  926.             } while(0)
  927.  
  928. #ifndef NCURSES_NOMACROS
  929.  
  930. /*
  931.  * These miscellaneous pseudo functions are provided for compatibility:
  932.  */
  933.  
  934. #define wgetstr(w, s)        wgetnstr(w, s, -1)
  935. #define getnstr(s, n)        wgetnstr(stdscr, s, n)
  936.  
  937. #define setterm(term)        setupterm(term, 1, (int *)0)
  938.  
  939. #define fixterm()        reset_prog_mode()
  940. #define resetterm()        reset_shell_mode()
  941. #define saveterm()        def_prog_mode()
  942. #define crmode()        cbreak()
  943. #define nocrmode()        nocbreak()
  944. #define gettmode()
  945.  
  946. /* It seems older SYSV curses versions define these */
  947. #if !NCURSES_OPAQUE
  948. #define getattrs(win)        ((win) ? (win)->_attrs : A_NORMAL)
  949. #define getcurx(win)        ((win) ? (win)->_curx : ERR)
  950. #define getcury(win)        ((win) ? (win)->_cury : ERR)
  951. #define getbegx(win)        ((win) ? (win)->_begx : ERR)
  952. #define getbegy(win)        ((win) ? (win)->_begy : ERR)
  953. #define getmaxx(win)        ((win) ? ((win)->_maxx + 1) : ERR)
  954. #define getmaxy(win)        ((win) ? ((win)->_maxy + 1) : ERR)
  955. #define getparx(win)        ((win) ? (win)->_parx : ERR)
  956. #define getpary(win)        ((win) ? (win)->_pary : ERR)
  957. #endif /* NCURSES_OPAQUE */
  958.  
  959. #define wstandout(win)          (wattrset(win,A_STANDOUT))
  960. #define wstandend(win)          (wattrset(win,A_NORMAL))
  961.  
  962. #define wattron(win,at)        wattr_on(win, NCURSES_CAST(attr_t, at), NULL)
  963. #define wattroff(win,at)    wattr_off(win, NCURSES_CAST(attr_t, at), NULL)
  964.  
  965. #if !NCURSES_OPAQUE
  966. #if defined(_XOPEN_SOURCE_EXTENDED) && 0
  967. #define wattrset(win,at)    ((win)->_color = PAIR_NUMBER(at), \
  968.                  (win)->_attrs = (at))
  969. #else
  970. #define wattrset(win,at)    ((win)->_attrs = (at))
  971. #endif
  972. #endif /* NCURSES_OPAQUE */
  973.  
  974. #define scroll(win)        wscrl(win,1)
  975.  
  976. #define touchwin(win)        wtouchln((win), 0, getmaxy(win), 1)
  977. #define touchline(win, s, c)    wtouchln((win), s, c, 1)
  978. #define untouchwin(win)        wtouchln((win), 0, getmaxy(win), 0)
  979.  
  980. #define box(win, v, h)        wborder(win, v, v, h, h, 0, 0, 0, 0)
  981. #define border(ls, rs, ts, bs, tl, tr, bl, br)    wborder(stdscr, ls, rs, ts, bs, tl, tr, bl, br)
  982. #define hline(ch, n)        whline(stdscr, ch, n)
  983. #define vline(ch, n)        wvline(stdscr, ch, n)
  984.  
  985. #define winstr(w, s)        winnstr(w, s, -1)
  986. #define winchstr(w, s)        winchnstr(w, s, -1)
  987. #define winsstr(w, s)        winsnstr(w, s, -1)
  988.  
  989. #if !NCURSES_OPAQUE
  990. #define redrawwin(win)        wredrawln(win, 0, (win)->_maxy+1)
  991. #endif /* NCURSES_OPAQUE */
  992.  
  993. #define waddstr(win,str)    waddnstr(win,str,-1)
  994. #define waddchstr(win,str)    waddchnstr(win,str,-1)
  995.  
  996. /*
  997.  * These apply to the first 256 color pairs.
  998.  */
  999. #define COLOR_PAIR(n)    NCURSES_BITS(n, 0)
  1000. #define PAIR_NUMBER(a)    (NCURSES_CAST(int,(((a) & A_COLOR) >> NCURSES_ATTR_SHIFT)))
  1001.  
  1002. /*
  1003.  * pseudo functions for standard screen
  1004.  */
  1005.  
  1006. #define addch(ch)        waddch(stdscr,ch)
  1007. #define addchnstr(str,n)    waddchnstr(stdscr,str,n)
  1008. #define addchstr(str)        waddchstr(stdscr,str)
  1009. #define addnstr(str,n)        waddnstr(stdscr,str,n)
  1010. #define addstr(str)        waddnstr(stdscr,str,-1)
  1011. #define attroff(at)        wattroff(stdscr,at)
  1012. #define attron(at)        wattron(stdscr,at)
  1013. #define attrset(at)        wattrset(stdscr,at)
  1014. #define attr_get(ap,cp,o)    wattr_get(stdscr,ap,cp,o)
  1015. #define attr_off(a,o)        wattr_off(stdscr,a,o)
  1016. #define attr_on(a,o)        wattr_on(stdscr,a,o)
  1017. #define attr_set(a,c,o)        wattr_set(stdscr,a,c,o)
  1018. #define bkgd(ch)        wbkgd(stdscr,ch)
  1019. #define bkgdset(ch)        wbkgdset(stdscr,ch)
  1020. #define chgat(n,a,c,o)        wchgat(stdscr,n,a,c,o)
  1021. #define clear()            wclear(stdscr)
  1022. #define clrtobot()        wclrtobot(stdscr)
  1023. #define clrtoeol()        wclrtoeol(stdscr)
  1024. #define color_set(c,o)        wcolor_set(stdscr,c,o)
  1025. #define delch()            wdelch(stdscr)
  1026. #define deleteln()        winsdelln(stdscr,-1)
  1027. #define echochar(c)        wechochar(stdscr,c)
  1028. #define erase()            werase(stdscr)
  1029. #define getch()            wgetch(stdscr)
  1030. #define getstr(str)        wgetstr(stdscr,str)
  1031. #define inch()            winch(stdscr)
  1032. #define inchnstr(s,n)        winchnstr(stdscr,s,n)
  1033. #define inchstr(s)        winchstr(stdscr,s)
  1034. #define innstr(s,n)        winnstr(stdscr,s,n)
  1035. #define insch(c)        winsch(stdscr,c)
  1036. #define insdelln(n)        winsdelln(stdscr,n)
  1037. #define insertln()        winsdelln(stdscr,1)
  1038. #define insnstr(s,n)        winsnstr(stdscr,s,n)
  1039. #define insstr(s)        winsstr(stdscr,s)
  1040. #define instr(s)        winstr(stdscr,s)
  1041. #define move(y,x)        wmove(stdscr,y,x)
  1042. #define refresh()        wrefresh(stdscr)
  1043. #define scrl(n)            wscrl(stdscr,n)
  1044. #define setscrreg(t,b)        wsetscrreg(stdscr,t,b)
  1045. #define standend()        wstandend(stdscr)
  1046. #define standout()        wstandout(stdscr)
  1047. #define timeout(delay)        wtimeout(stdscr,delay)
  1048. #define wdeleteln(win)        winsdelln(win,-1)
  1049. #define winsertln(win)        winsdelln(win,1)
  1050.  
  1051. /*
  1052.  * mv functions
  1053.  */
  1054.  
  1055. #define mvwaddch(win,y,x,ch)        (wmove(win,y,x) == ERR ? ERR : waddch(win,ch))
  1056. #define mvwaddchnstr(win,y,x,str,n)    (wmove(win,y,x) == ERR ? ERR : waddchnstr(win,str,n))
  1057. #define mvwaddchstr(win,y,x,str)    (wmove(win,y,x) == ERR ? ERR : waddchnstr(win,str,-1))
  1058. #define mvwaddnstr(win,y,x,str,n)    (wmove(win,y,x) == ERR ? ERR : waddnstr(win,str,n))
  1059. #define mvwaddstr(win,y,x,str)        (wmove(win,y,x) == ERR ? ERR : waddnstr(win,str,-1))
  1060. #define mvwdelch(win,y,x)        (wmove(win,y,x) == ERR ? ERR : wdelch(win))
  1061. #define mvwchgat(win,y,x,n,a,c,o)    (wmove(win,y,x) == ERR ? ERR : wchgat(win,n,a,c,o))
  1062. #define mvwgetch(win,y,x)        (wmove(win,y,x) == ERR ? ERR : wgetch(win))
  1063. #define mvwgetnstr(win,y,x,str,n)    (wmove(win,y,x) == ERR ? ERR : wgetnstr(win,str,n))
  1064. #define mvwgetstr(win,y,x,str)        (wmove(win,y,x) == ERR ? ERR : wgetstr(win,str))
  1065. #define mvwhline(win,y,x,c,n)        (wmove(win,y,x) == ERR ? ERR : whline(win,c,n))
  1066. #define mvwinch(win,y,x)        (wmove(win,y,x) == ERR ? NCURSES_CAST(chtype, ERR) : winch(win))
  1067. #define mvwinchnstr(win,y,x,s,n)    (wmove(win,y,x) == ERR ? ERR : winchnstr(win,s,n))
  1068. #define mvwinchstr(win,y,x,s)        (wmove(win,y,x) == ERR ? ERR : winchstr(win,s))
  1069. #define mvwinnstr(win,y,x,s,n)        (wmove(win,y,x) == ERR ? ERR : winnstr(win,s,n))
  1070. #define mvwinsch(win,y,x,c)        (wmove(win,y,x) == ERR ? ERR : winsch(win,c))
  1071. #define mvwinsnstr(win,y,x,s,n)        (wmove(win,y,x) == ERR ? ERR : winsnstr(win,s,n))
  1072. #define mvwinsstr(win,y,x,s)        (wmove(win,y,x) == ERR ? ERR : winsstr(win,s))
  1073. #define mvwinstr(win,y,x,s)        (wmove(win,y,x) == ERR ? ERR : winstr(win,s))
  1074. #define mvwvline(win,y,x,c,n)        (wmove(win,y,x) == ERR ? ERR : wvline(win,c,n))
  1075.  
  1076. #define mvaddch(y,x,ch)            mvwaddch(stdscr,y,x,ch)
  1077. #define mvaddchnstr(y,x,str,n)        mvwaddchnstr(stdscr,y,x,str,n)
  1078. #define mvaddchstr(y,x,str)        mvwaddchstr(stdscr,y,x,str)
  1079. #define mvaddnstr(y,x,str,n)        mvwaddnstr(stdscr,y,x,str,n)
  1080. #define mvaddstr(y,x,str)        mvwaddstr(stdscr,y,x,str)
  1081. #define mvchgat(y,x,n,a,c,o)        mvwchgat(stdscr,y,x,n,a,c,o)
  1082. #define mvdelch(y,x)            mvwdelch(stdscr,y,x)
  1083. #define mvgetch(y,x)            mvwgetch(stdscr,y,x)
  1084. #define mvgetnstr(y,x,str,n)        mvwgetnstr(stdscr,y,x,str,n)
  1085. #define mvgetstr(y,x,str)        mvwgetstr(stdscr,y,x,str)
  1086. #define mvhline(y,x,c,n)        mvwhline(stdscr,y,x,c,n)
  1087. #define mvinch(y,x)            mvwinch(stdscr,y,x)
  1088. #define mvinchnstr(y,x,s,n)        mvwinchnstr(stdscr,y,x,s,n)
  1089. #define mvinchstr(y,x,s)        mvwinchstr(stdscr,y,x,s)
  1090. #define mvinnstr(y,x,s,n)        mvwinnstr(stdscr,y,x,s,n)
  1091. #define mvinsch(y,x,c)            mvwinsch(stdscr,y,x,c)
  1092. #define mvinsnstr(y,x,s,n)        mvwinsnstr(stdscr,y,x,s,n)
  1093. #define mvinsstr(y,x,s)            mvwinsstr(stdscr,y,x,s)
  1094. #define mvinstr(y,x,s)            mvwinstr(stdscr,y,x,s)
  1095. #define mvvline(y,x,c,n)        mvwvline(stdscr,y,x,c,n)
  1096.  
  1097. /*
  1098.  * Some wide-character functions can be implemented without the extensions.
  1099.  */
  1100. #if !NCURSES_OPAQUE
  1101. #define getbkgd(win)                    ((win)->_bkgd)
  1102. #endif /* NCURSES_OPAQUE */
  1103.  
  1104. #define slk_attr_off(a,v)        ((v) ? ERR : slk_attroff(a))
  1105. #define slk_attr_on(a,v)        ((v) ? ERR : slk_attron(a))
  1106.  
  1107. #if !NCURSES_OPAQUE
  1108. #if defined(_XOPEN_SOURCE_EXTENDED) && 0
  1109. #define wattr_set(win,a,p,opts)        ((win)->_attrs = ((a) & ~A_COLOR), \
  1110.                      (win)->_color = (p), \
  1111.                      OK)
  1112. #define wattr_get(win,a,p,opts)        ((void)((a) != 0 && (*(a) = (win)->_attrs)), \
  1113.                      (void)((p) != 0 && (*(p) = (win)->_color)), \
  1114.                      OK)
  1115. #else
  1116. #define wattr_set(win,a,p,opts)        ((win)->_attrs = (((a) & ~A_COLOR) | COLOR_PAIR(p)), OK)
  1117. #define wattr_get(win,a,p,opts)        ((void)((a) != 0 && (*(a) = (win)->_attrs)), \
  1118.                      (void)((p) != 0 && (*(p) = PAIR_NUMBER((win)->_attrs))), \
  1119.                      OK)
  1120. #endif
  1121. #endif /* NCURSES_OPAQUE */
  1122.  
  1123. /*
  1124.  * X/Open curses deprecates SVr4 vwprintw/vwscanw, which are supposed to use
  1125.  * varargs.h.  It adds new calls vw_printw/vw_scanw, which are supposed to
  1126.  * use POSIX stdarg.h.  The ncurses versions of vwprintw/vwscanw already
  1127.  * use stdarg.h, so...
  1128.  */
  1129. #define vw_printw        vwprintw
  1130. #define vw_scanw        vwscanw
  1131.  
  1132. /*
  1133.  * Export fallback function for use in C++ binding.
  1134.  */
  1135. #if !1
  1136. #define vsscanf(a,b,c) _nc_vsscanf(a,b,c)
  1137. NCURSES_EXPORT(int) vsscanf(const char *, const char *, va_list);
  1138. #endif
  1139.  
  1140. /*
  1141.  * These macros are extensions - not in X/Open Curses.
  1142.  */
  1143. #if 1
  1144. #if !NCURSES_OPAQUE
  1145. #define is_cleared(win)        ((win)->_clear)
  1146. #define is_idcok(win)        ((win)->_idcok)
  1147. #define is_idlok(win)        ((win)->_idlok)
  1148. #define is_immedok(win)        ((win)->_immed)
  1149. #define is_keypad(win)        ((win)->_use_keypad)
  1150. #define is_leaveok(win)        ((win)->_leaveok)
  1151. #define is_nodelay(win)        ((win)->_delay == 0)
  1152. #define is_notimeout(win)    ((win)->_notimeout)
  1153. #define is_scrollok(win)    ((win)->_scroll)
  1154. #define is_syncok(win)        ((win)->_sync)
  1155. #define wgetparent(win)        ((win) ? (win)->_parent : 0)
  1156. #define wgetscrreg(win,t,b)    ((win) ? (*(t) = (win)->_regtop, *(b) = (win)->_regbottom, OK) : ERR)
  1157. #endif
  1158. #endif
  1159.  
  1160. #endif /* NCURSES_NOMACROS */
  1161.  
  1162. /*
  1163.  * Public variables.
  1164.  *
  1165.  * Notes:
  1166.  *    a. ESCDELAY was an undocumented feature under AIX curses.
  1167.  *       It gives the ESC expire time in milliseconds.
  1168.  *    b. ttytype is needed for backward compatibility
  1169.  */
  1170. #if 0
  1171.  
  1172. NCURSES_WRAPPED_VAR(WINDOW *, curscr);
  1173. NCURSES_WRAPPED_VAR(WINDOW *, newscr);
  1174. NCURSES_WRAPPED_VAR(WINDOW *, stdscr);
  1175. NCURSES_WRAPPED_VAR(char *, ttytype);
  1176. NCURSES_WRAPPED_VAR(int, COLORS);
  1177. NCURSES_WRAPPED_VAR(int, COLOR_PAIRS);
  1178. NCURSES_WRAPPED_VAR(int, COLS);
  1179. NCURSES_WRAPPED_VAR(int, ESCDELAY);
  1180. NCURSES_WRAPPED_VAR(int, LINES);
  1181. NCURSES_WRAPPED_VAR(int, TABSIZE);
  1182.  
  1183. #define curscr      NCURSES_PUBLIC_VAR(curscr())
  1184. #define newscr      NCURSES_PUBLIC_VAR(newscr())
  1185. #define stdscr      NCURSES_PUBLIC_VAR(stdscr())
  1186. #define ttytype     NCURSES_PUBLIC_VAR(ttytype())
  1187. #define COLORS      NCURSES_PUBLIC_VAR(COLORS())
  1188. #define COLOR_PAIRS NCURSES_PUBLIC_VAR(COLOR_PAIRS())
  1189. #define COLS        NCURSES_PUBLIC_VAR(COLS())
  1190. #define ESCDELAY    NCURSES_PUBLIC_VAR(ESCDELAY())
  1191. #define LINES       NCURSES_PUBLIC_VAR(LINES())
  1192. #define TABSIZE     NCURSES_PUBLIC_VAR(TABSIZE())
  1193.  
  1194. #else
  1195.  
  1196. extern NCURSES_EXPORT_VAR(WINDOW *) curscr;
  1197. extern NCURSES_EXPORT_VAR(WINDOW *) newscr;
  1198. extern NCURSES_EXPORT_VAR(WINDOW *) stdscr;
  1199. extern NCURSES_EXPORT_VAR(char) ttytype[];
  1200. extern NCURSES_EXPORT_VAR(int) COLORS;
  1201. extern NCURSES_EXPORT_VAR(int) COLOR_PAIRS;
  1202. extern NCURSES_EXPORT_VAR(int) COLS;
  1203. extern NCURSES_EXPORT_VAR(int) ESCDELAY;
  1204. extern NCURSES_EXPORT_VAR(int) LINES;
  1205. extern NCURSES_EXPORT_VAR(int) TABSIZE;
  1206.  
  1207. #endif
  1208.  
  1209. /*
  1210.  * Pseudo-character tokens outside ASCII range.  The curses wgetch() function
  1211.  * will return any given one of these only if the corresponding k- capability
  1212.  * is defined in your terminal's terminfo entry.
  1213.  *
  1214.  * Some keys (KEY_A1, etc) are arranged like this:
  1215.  *    a1     up    a3
  1216.  *    left   b2    right
  1217.  *    c1     down  c3
  1218.  *
  1219.  * A few key codes do not depend upon the terminfo entry.
  1220.  */
  1221. #define KEY_CODE_YES    0400        /* A wchar_t contains a key code */
  1222. #define KEY_MIN        0401        /* Minimum curses key */
  1223. #define KEY_BREAK    0401        /* Break key (unreliable) */
  1224. #define KEY_SRESET    0530        /* Soft (partial) reset (unreliable) */
  1225. #define KEY_RESET    0531        /* Reset or hard reset (unreliable) */
  1226. /*
  1227.  * These definitions were generated by ./MKkey_defs.sh ./Caps
  1228.  */
  1229. #define KEY_DOWN    0402        /* down-arrow key */
  1230. #define KEY_UP        0403        /* up-arrow key */
  1231. #define KEY_LEFT    0404        /* left-arrow key */
  1232. #define KEY_RIGHT    0405        /* right-arrow key */
  1233. #define KEY_HOME    0406        /* home key */
  1234. #define KEY_BACKSPACE    0407        /* backspace key */
  1235. #define KEY_F0        0410        /* Function keys.  Space for 64 */
  1236. #define KEY_F(n)    (KEY_F0+(n))    /* Value of function key n */
  1237. #define KEY_DL        0510        /* delete-line key */
  1238. #define KEY_IL        0511        /* insert-line key */
  1239. #define KEY_DC        0512        /* delete-character key */
  1240. #define KEY_IC        0513        /* insert-character key */
  1241. #define KEY_EIC        0514        /* sent by rmir or smir in insert mode */
  1242. #define KEY_CLEAR    0515        /* clear-screen or erase key */
  1243. #define KEY_EOS        0516        /* clear-to-end-of-screen key */
  1244. #define KEY_EOL        0517        /* clear-to-end-of-line key */
  1245. #define KEY_SF        0520        /* scroll-forward key */
  1246. #define KEY_SR        0521        /* scroll-backward key */
  1247. #define KEY_NPAGE    0522        /* next-page key */
  1248. #define KEY_PPAGE    0523        /* previous-page key */
  1249. #define KEY_STAB    0524        /* set-tab key */
  1250. #define KEY_CTAB    0525        /* clear-tab key */
  1251. #define KEY_CATAB    0526        /* clear-all-tabs key */
  1252. #define KEY_ENTER    0527        /* enter/send key */
  1253. #define KEY_PRINT    0532        /* print key */
  1254. #define KEY_LL        0533        /* lower-left key (home down) */
  1255. #define KEY_A1        0534        /* upper left of keypad */
  1256. #define KEY_A3        0535        /* upper right of keypad */
  1257. #define KEY_B2        0536        /* center of keypad */
  1258. #define KEY_C1        0537        /* lower left of keypad */
  1259. #define KEY_C3        0540        /* lower right of keypad */
  1260. #define KEY_BTAB    0541        /* back-tab key */
  1261. #define KEY_BEG        0542        /* begin key */
  1262. #define KEY_CANCEL    0543        /* cancel key */
  1263. #define KEY_CLOSE    0544        /* close key */
  1264. #define KEY_COMMAND    0545        /* command key */
  1265. #define KEY_COPY    0546        /* copy key */
  1266. #define KEY_CREATE    0547        /* create key */
  1267. #define KEY_END        0550        /* end key */
  1268. #define KEY_EXIT    0551        /* exit key */
  1269. #define KEY_FIND    0552        /* find key */
  1270. #define KEY_HELP    0553        /* help key */
  1271. #define KEY_MARK    0554        /* mark key */
  1272. #define KEY_MESSAGE    0555        /* message key */
  1273. #define KEY_MOVE    0556        /* move key */
  1274. #define KEY_NEXT    0557        /* next key */
  1275. #define KEY_OPEN    0560        /* open key */
  1276. #define KEY_OPTIONS    0561        /* options key */
  1277. #define KEY_PREVIOUS    0562        /* previous key */
  1278. #define KEY_REDO    0563        /* redo key */
  1279. #define KEY_REFERENCE    0564        /* reference key */
  1280. #define KEY_REFRESH    0565        /* refresh key */
  1281. #define KEY_REPLACE    0566        /* replace key */
  1282. #define KEY_RESTART    0567        /* restart key */
  1283. #define KEY_RESUME    0570        /* resume key */
  1284. #define KEY_SAVE    0571        /* save key */
  1285. #define KEY_SBEG    0572        /* shifted begin key */
  1286. #define KEY_SCANCEL    0573        /* shifted cancel key */
  1287. #define KEY_SCOMMAND    0574        /* shifted command key */
  1288. #define KEY_SCOPY    0575        /* shifted copy key */
  1289. #define KEY_SCREATE    0576        /* shifted create key */
  1290. #define KEY_SDC        0577        /* shifted delete-character key */
  1291. #define KEY_SDL        0600        /* shifted delete-line key */
  1292. #define KEY_SELECT    0601        /* select key */
  1293. #define KEY_SEND    0602        /* shifted end key */
  1294. #define KEY_SEOL    0603        /* shifted clear-to-end-of-line key */
  1295. #define KEY_SEXIT    0604        /* shifted exit key */
  1296. #define KEY_SFIND    0605        /* shifted find key */
  1297. #define KEY_SHELP    0606        /* shifted help key */
  1298. #define KEY_SHOME    0607        /* shifted home key */
  1299. #define KEY_SIC        0610        /* shifted insert-character key */
  1300. #define KEY_SLEFT    0611        /* shifted left-arrow key */
  1301. #define KEY_SMESSAGE    0612        /* shifted message key */
  1302. #define KEY_SMOVE    0613        /* shifted move key */
  1303. #define KEY_SNEXT    0614        /* shifted next key */
  1304. #define KEY_SOPTIONS    0615        /* shifted options key */
  1305. #define KEY_SPREVIOUS    0616        /* shifted previous key */
  1306. #define KEY_SPRINT    0617        /* shifted print key */
  1307. #define KEY_SREDO    0620        /* shifted redo key */
  1308. #define KEY_SREPLACE    0621        /* shifted replace key */
  1309. #define KEY_SRIGHT    0622        /* shifted right-arrow key */
  1310. #define KEY_SRSUME    0623        /* shifted resume key */
  1311. #define KEY_SSAVE    0624        /* shifted save key */
  1312. #define KEY_SSUSPEND    0625        /* shifted suspend key */
  1313. #define KEY_SUNDO    0626        /* shifted undo key */
  1314. #define KEY_SUSPEND    0627        /* suspend key */
  1315. #define KEY_UNDO    0630        /* undo key */
  1316. #define KEY_MOUSE    0631        /* Mouse event has occurred */
  1317. #define KEY_RESIZE    0632        /* Terminal resize event */
  1318. #define KEY_EVENT    0633        /* We were interrupted by an event */
  1319.  
  1320. #define KEY_MAX        0777        /* Maximum key value is 0633 */
  1321. /* $Id: curses.wide,v 1.34 2007/03/10 17:52:23 tom Exp $ */
  1322. /*
  1323.  * vile:cmode:
  1324.  * This file is part of ncurses, designed to be appended after curses.h.in
  1325.  * (see that file for the relevant copyright).
  1326.  */
  1327. #ifdef _XOPEN_SOURCE_EXTENDED
  1328.  
  1329. extern NCURSES_EXPORT_VAR(cchar_t *) _nc_wacs;
  1330.  
  1331. #define NCURSES_WACS(c)    (&_nc_wacs[(unsigned char)c])
  1332.  
  1333. #define WACS_BSSB    NCURSES_WACS('l')
  1334. #define WACS_SSBB    NCURSES_WACS('m')
  1335. #define WACS_BBSS    NCURSES_WACS('k')
  1336. #define WACS_SBBS    NCURSES_WACS('j')
  1337. #define WACS_SBSS    NCURSES_WACS('u')
  1338. #define WACS_SSSB    NCURSES_WACS('t')
  1339. #define WACS_SSBS    NCURSES_WACS('v')
  1340. #define WACS_BSSS    NCURSES_WACS('w')
  1341. #define WACS_BSBS    NCURSES_WACS('q')
  1342. #define WACS_SBSB    NCURSES_WACS('x')
  1343. #define WACS_SSSS    NCURSES_WACS('n')
  1344.  
  1345. #define WACS_ULCORNER    WACS_BSSB
  1346. #define WACS_LLCORNER    WACS_SSBB
  1347. #define WACS_URCORNER    WACS_BBSS
  1348. #define WACS_LRCORNER    WACS_SBBS
  1349. #define WACS_RTEE    WACS_SBSS
  1350. #define WACS_LTEE    WACS_SSSB
  1351. #define WACS_BTEE    WACS_SSBS
  1352. #define WACS_TTEE    WACS_BSSS
  1353. #define WACS_HLINE    WACS_BSBS
  1354. #define WACS_VLINE    WACS_SBSB
  1355. #define WACS_PLUS    WACS_SSSS
  1356.  
  1357. #define WACS_S1        NCURSES_WACS('o') /* scan line 1 */
  1358. #define WACS_S9     NCURSES_WACS('s') /* scan line 9 */
  1359. #define WACS_DIAMOND    NCURSES_WACS('`') /* diamond */
  1360. #define WACS_CKBOARD    NCURSES_WACS('a') /* checker board */
  1361. #define WACS_DEGREE    NCURSES_WACS('f') /* degree symbol */
  1362. #define WACS_PLMINUS    NCURSES_WACS('g') /* plus/minus */
  1363. #define WACS_BULLET    NCURSES_WACS('~') /* bullet */
  1364.  
  1365.     /* Teletype 5410v1 symbols */
  1366. #define WACS_LARROW    NCURSES_WACS(',') /* arrow left */
  1367. #define WACS_RARROW    NCURSES_WACS('+') /* arrow right */
  1368. #define WACS_DARROW    NCURSES_WACS('.') /* arrow down */
  1369. #define WACS_UARROW    NCURSES_WACS('-') /* arrow up */
  1370. #define WACS_BOARD    NCURSES_WACS('h') /* board of squares */
  1371. #define WACS_LANTERN    NCURSES_WACS('i') /* lantern symbol */
  1372. #define WACS_BLOCK    NCURSES_WACS('0') /* solid square block */
  1373.  
  1374.     /* ncurses extensions */
  1375. #define WACS_S3        NCURSES_WACS('p') /* scan line 3 */
  1376. #define WACS_S7        NCURSES_WACS('r') /* scan line 7 */
  1377. #define WACS_LEQUAL    NCURSES_WACS('y') /* less/equal */
  1378. #define WACS_GEQUAL    NCURSES_WACS('z') /* greater/equal */
  1379. #define WACS_PI        NCURSES_WACS('{') /* Pi */
  1380. #define WACS_NEQUAL    NCURSES_WACS('|') /* not equal */
  1381. #define WACS_STERLING    NCURSES_WACS('}') /* UK pound sign */
  1382.  
  1383. /*
  1384.  * Function prototypes for wide-character operations.
  1385.  *
  1386.  * "generated" comments should include ":WIDEC" to make the corresponding
  1387.  * functions ifdef'd in lib_gen.c
  1388.  *
  1389.  * "implemented" comments do not need this marker.
  1390.  */
  1391.  
  1392. extern NCURSES_EXPORT(int) add_wch (const cchar_t *);            /* generated:WIDEC */
  1393. extern NCURSES_EXPORT(int) add_wchnstr (const cchar_t *, int);        /* generated:WIDEC */
  1394. extern NCURSES_EXPORT(int) add_wchstr (const cchar_t *);        /* generated:WIDEC */
  1395. extern NCURSES_EXPORT(int) addnwstr (const wchar_t *, int);        /* generated:WIDEC */
  1396. extern NCURSES_EXPORT(int) addwstr (const wchar_t *);            /* generated:WIDEC */
  1397. extern NCURSES_EXPORT(int) bkgrnd (const cchar_t *);            /* generated:WIDEC */
  1398. extern NCURSES_EXPORT(void) bkgrndset (const cchar_t *);        /* generated:WIDEC */
  1399. extern NCURSES_EXPORT(int) border_set (const cchar_t*,const cchar_t*,const cchar_t*,const cchar_t*,const cchar_t*,const cchar_t*,const cchar_t*,const cchar_t*); /* generated:WIDEC */
  1400. extern NCURSES_EXPORT(int) box_set (WINDOW *, const cchar_t *, const cchar_t *);    /* generated:WIDEC */
  1401. extern NCURSES_EXPORT(int) echo_wchar (const cchar_t *);        /* generated:WIDEC */
  1402. extern NCURSES_EXPORT(int) erasewchar (wchar_t*);            /* implemented */
  1403. extern NCURSES_EXPORT(int) get_wch (wint_t *);                /* generated:WIDEC */
  1404. extern NCURSES_EXPORT(int) get_wstr (wint_t *);                /* generated:WIDEC */
  1405. extern NCURSES_EXPORT(int) getbkgrnd (cchar_t *);            /* generated:WIDEC */
  1406. extern NCURSES_EXPORT(int) getcchar (const cchar_t *, wchar_t*, attr_t*, short*, void*);    /* implemented */
  1407. extern NCURSES_EXPORT(int) getn_wstr (wint_t *, int);            /* generated:WIDEC */
  1408. extern NCURSES_EXPORT(int) hline_set (const cchar_t *, int);        /* generated:WIDEC */
  1409. extern NCURSES_EXPORT(int) in_wch (cchar_t *);                /* generated:WIDEC */
  1410. extern NCURSES_EXPORT(int) in_wchnstr (cchar_t *, int);            /* generated:WIDEC */
  1411. extern NCURSES_EXPORT(int) in_wchstr (cchar_t *);            /* generated:WIDEC */
  1412. extern NCURSES_EXPORT(int) innwstr (wchar_t *, int);            /* generated:WIDEC */
  1413. extern NCURSES_EXPORT(int) ins_nwstr (const wchar_t *, int);        /* generated:WIDEC */
  1414. extern NCURSES_EXPORT(int) ins_wch (const cchar_t *);            /* generated:WIDEC */
  1415. extern NCURSES_EXPORT(int) ins_wstr (const wchar_t *);            /* generated:WIDEC */
  1416. extern NCURSES_EXPORT(int) inwstr (wchar_t *);                /* generated:WIDEC */
  1417. extern NCURSES_EXPORT(NCURSES_CONST char*) key_name (wchar_t);        /* implemented */
  1418. extern NCURSES_EXPORT(int) killwchar (wchar_t *);            /* implemented */
  1419. extern NCURSES_EXPORT(int) mvadd_wch (int, int, const cchar_t *);    /* generated:WIDEC */
  1420. extern NCURSES_EXPORT(int) mvadd_wchnstr (int, int, const cchar_t *, int);/* generated:WIDEC */
  1421. extern NCURSES_EXPORT(int) mvadd_wchstr (int, int, const cchar_t *);    /* generated:WIDEC */
  1422. extern NCURSES_EXPORT(int) mvaddnwstr (int, int, const wchar_t *, int);    /* generated:WIDEC */
  1423. extern NCURSES_EXPORT(int) mvaddwstr (int, int, const wchar_t *);    /* generated:WIDEC */
  1424. extern NCURSES_EXPORT(int) mvget_wch (int, int, wint_t *);        /* generated:WIDEC */
  1425. extern NCURSES_EXPORT(int) mvget_wstr (int, int, wint_t *);        /* generated:WIDEC */
  1426. extern NCURSES_EXPORT(int) mvgetn_wstr (int, int, wint_t *, int);    /* generated:WIDEC */
  1427. extern NCURSES_EXPORT(int) mvhline_set (int, int, const cchar_t *, int);    /* generated:WIDEC */
  1428. extern NCURSES_EXPORT(int) mvin_wch (int, int, cchar_t *);        /* generated:WIDEC */
  1429. extern NCURSES_EXPORT(int) mvin_wchnstr (int, int, cchar_t *, int);    /* generated:WIDEC */
  1430. extern NCURSES_EXPORT(int) mvin_wchstr (int, int, cchar_t *);        /* generated:WIDEC */
  1431. extern NCURSES_EXPORT(int) mvinnwstr (int, int, wchar_t *, int);    /* generated:WIDEC */
  1432. extern NCURSES_EXPORT(int) mvins_nwstr (int, int, const wchar_t *, int);    /* generated:WIDEC */
  1433. extern NCURSES_EXPORT(int) mvins_wch (int, int, const cchar_t *);    /* generated:WIDEC */
  1434. extern NCURSES_EXPORT(int) mvins_wstr (int, int, const wchar_t *);    /* generated:WIDEC */
  1435. extern NCURSES_EXPORT(int) mvinwstr (int, int, wchar_t *);        /* generated:WIDEC */
  1436. extern NCURSES_EXPORT(int) mvvline_set (int, int, const cchar_t *, int);    /* generated:WIDEC */
  1437. extern NCURSES_EXPORT(int) mvwadd_wch (WINDOW *, int, int, const cchar_t *);    /* generated:WIDEC */
  1438. extern NCURSES_EXPORT(int) mvwadd_wchnstr (WINDOW *, int, int, const cchar_t *, int); /* generated:WIDEC */
  1439. extern NCURSES_EXPORT(int) mvwadd_wchstr (WINDOW *, int, int, const cchar_t *);    /* generated:WIDEC */
  1440. extern NCURSES_EXPORT(int) mvwaddnwstr (WINDOW *, int, int, const wchar_t *, int);/* generated:WIDEC */
  1441. extern NCURSES_EXPORT(int) mvwaddwstr (WINDOW *, int, int, const wchar_t *);    /* generated:WIDEC */
  1442. extern NCURSES_EXPORT(int) mvwget_wch (WINDOW *, int, int, wint_t *);    /* generated:WIDEC */
  1443. extern NCURSES_EXPORT(int) mvwget_wstr (WINDOW *, int, int, wint_t *);    /* generated:WIDEC */
  1444. extern NCURSES_EXPORT(int) mvwgetn_wstr (WINDOW *, int, int, wint_t *, int);/* generated:WIDEC */
  1445. extern NCURSES_EXPORT(int) mvwhline_set (WINDOW *, int, int, const cchar_t *, int);/* generated:WIDEC */
  1446. extern NCURSES_EXPORT(int) mvwin_wch (WINDOW *, int, int, cchar_t *);    /* generated:WIDEC */
  1447. extern NCURSES_EXPORT(int) mvwin_wchnstr (WINDOW *, int,int, cchar_t *,int);    /* generated:WIDEC */
  1448. extern NCURSES_EXPORT(int) mvwin_wchstr (WINDOW *, int, int, cchar_t *);    /* generated:WIDEC */
  1449. extern NCURSES_EXPORT(int) mvwinnwstr (WINDOW *, int, int, wchar_t *, int);    /* generated:WIDEC */
  1450. extern NCURSES_EXPORT(int) mvwins_nwstr (WINDOW *, int,int, const wchar_t *,int); /* generated:WIDEC */
  1451. extern NCURSES_EXPORT(int) mvwins_wch (WINDOW *, int, int, const cchar_t *);    /* generated:WIDEC */
  1452. extern NCURSES_EXPORT(int) mvwins_wstr (WINDOW *, int, int, const wchar_t *);    /* generated:WIDEC */
  1453. extern NCURSES_EXPORT(int) mvwinwstr (WINDOW *, int, int, wchar_t *);        /* generated:WIDEC */
  1454. extern NCURSES_EXPORT(int) mvwvline_set (WINDOW *, int,int, const cchar_t *,int); /* generated:WIDEC */
  1455. extern NCURSES_EXPORT(int) pecho_wchar (WINDOW *, const cchar_t *);    /* implemented */
  1456. extern NCURSES_EXPORT(int) setcchar (cchar_t *, const wchar_t *, const attr_t, short, const void *);    /* implemented */
  1457. extern NCURSES_EXPORT(int) slk_wset (int, const wchar_t *, int);    /* implemented */
  1458. extern NCURSES_EXPORT(attr_t) term_attrs (void);            /* implemented */
  1459. extern NCURSES_EXPORT(int) unget_wch (const wchar_t);            /* implemented */
  1460. extern NCURSES_EXPORT(int) vid_attr (attr_t, short, void *);        /* implemented */
  1461. extern NCURSES_EXPORT(int) vid_puts (attr_t, short, void *, int (*)(int)); /* implemented */
  1462. extern NCURSES_EXPORT(int) vline_set (const cchar_t *, int);        /* generated:WIDEC */
  1463. extern NCURSES_EXPORT(int) wadd_wch (WINDOW *,const cchar_t *);        /* implemented */
  1464. extern NCURSES_EXPORT(int) wadd_wchnstr (WINDOW *,const cchar_t *,int);    /* implemented */
  1465. extern NCURSES_EXPORT(int) wadd_wchstr (WINDOW *,const cchar_t *);    /* generated:WIDEC */
  1466. extern NCURSES_EXPORT(int) waddnwstr (WINDOW *,const wchar_t *,int);    /* implemented */
  1467. extern NCURSES_EXPORT(int) waddwstr (WINDOW *,const wchar_t *);        /* generated:WIDEC */
  1468. extern NCURSES_EXPORT(int) wbkgrnd (WINDOW *,const cchar_t *);        /* implemented */
  1469. extern NCURSES_EXPORT(void) wbkgrndset (WINDOW *,const cchar_t *);    /* implemented */
  1470. extern NCURSES_EXPORT(int) wborder_set (WINDOW *,const cchar_t*,const cchar_t*,const cchar_t*,const cchar_t*,const cchar_t*,const cchar_t*,const cchar_t*,const cchar_t*);    /* implemented */
  1471. extern NCURSES_EXPORT(int) wecho_wchar (WINDOW *, const cchar_t *);    /* implemented */
  1472. extern NCURSES_EXPORT(int) wget_wch (WINDOW *, wint_t *);        /* implemented */
  1473. extern NCURSES_EXPORT(int) wget_wstr (WINDOW *, wint_t *);        /* generated:WIDEC */
  1474. extern NCURSES_EXPORT(int) wgetbkgrnd (WINDOW *, cchar_t *);        /* generated:WIDEC */
  1475. extern NCURSES_EXPORT(int) wgetn_wstr (WINDOW *,wint_t *, int);        /* implemented */
  1476. extern NCURSES_EXPORT(int) whline_set (WINDOW *, const cchar_t *, int);    /* implemented */
  1477. extern NCURSES_EXPORT(int) win_wch (WINDOW *, cchar_t *);        /* implemented */
  1478. extern NCURSES_EXPORT(int) win_wchnstr (WINDOW *, cchar_t *, int);    /* implemented */
  1479. extern NCURSES_EXPORT(int) win_wchstr (WINDOW *, cchar_t *);        /* generated:WIDEC */
  1480. extern NCURSES_EXPORT(int) winnwstr (WINDOW *, wchar_t *, int);        /* implemented */
  1481. extern NCURSES_EXPORT(int) wins_nwstr (WINDOW *, const wchar_t *, int);    /* implemented */
  1482. extern NCURSES_EXPORT(int) wins_wch (WINDOW *, const cchar_t *);    /* implemented */
  1483. extern NCURSES_EXPORT(int) wins_wstr (WINDOW *, const wchar_t *);    /* generated:WIDEC */
  1484. extern NCURSES_EXPORT(int) winwstr (WINDOW *, wchar_t *);        /* implemented */
  1485. extern NCURSES_EXPORT(wchar_t*) wunctrl (cchar_t *);            /* implemented */
  1486. extern NCURSES_EXPORT(int) wvline_set (WINDOW *, const cchar_t *, int);    /* implemented */
  1487.  
  1488. #ifndef NCURSES_NOMACROS
  1489.  
  1490. /*
  1491.  * XSI curses macros for XPG4 conformance.
  1492.  */
  1493. #define add_wch(c)            wadd_wch(stdscr,c)
  1494. #define add_wchnstr(str,n)        wadd_wchnstr(stdscr,str,n)
  1495. #define add_wchstr(str)            wadd_wchstr(stdscr,str)
  1496. #define addnwstr(wstr,n)        waddnwstr(stdscr,wstr,n)
  1497. #define addwstr(wstr)            waddwstr(stdscr,wstr)
  1498. #define bkgrnd(c)            wbkgrnd(stdscr,c)
  1499. #define bkgrndset(c)            wbkgrndset(stdscr,c)
  1500. #define border_set(l,r,t,b,tl,tr,bl,br) wborder_set(stdscr,l,r,t,b,tl,tr,bl,br)
  1501. #define box_set(w,v,h)            wborder_set(w,v,v,h,h,0,0,0,0)
  1502. #define echo_wchar(c)            wecho_wchar(stdscr,c)
  1503. #define get_wch(c)            wget_wch(stdscr,c)
  1504. #define get_wstr(t)            wget_wstr(stdscr,t)
  1505. #define getbkgrnd(wch)            wgetbkgrnd(stdscr,wch)
  1506. #define getn_wstr(t,n)            wgetn_wstr(stdscr,t,n)
  1507. #define hline_set(c,n)            whline_set(stdscr,c,n)
  1508. #define in_wch(c)            win_wch(stdscr,c)
  1509. #define in_wchnstr(c,n)            win_wchnstr(stdscr,c,n)
  1510. #define in_wchstr(c)            win_wchstr(stdscr,c)
  1511. #define innwstr(c,n)            winnwstr(stdscr,c,n)
  1512. #define ins_nwstr(t,n)            wins_nwstr(stdscr,t,n)
  1513. #define ins_wch(c)            wins_wch(stdscr,c)
  1514. #define ins_wstr(t)            wins_wstr(stdscr,t)
  1515. #define inwstr(c)            winwstr(stdscr,c)
  1516. #define vline_set(c,n)            wvline_set(stdscr,c,n)
  1517. #define wadd_wchstr(win,str)        wadd_wchnstr(win,str,-1)
  1518. #define waddwstr(win,wstr)        waddnwstr(win,wstr,-1)
  1519. #define wget_wstr(w,t)            wgetn_wstr(w,t,-1)
  1520. #define win_wchstr(w,c)            win_wchnstr(w,c,-1)
  1521. #define wins_wstr(w,t)            wins_nwstr(w,t,-1)
  1522.  
  1523. #if !NCURSES_OPAQUE
  1524. #define wgetbkgrnd(win,wch)        (*wch = win->_bkgrnd, OK)
  1525. #endif
  1526.  
  1527. #define mvadd_wch(y,x,c)        mvwadd_wch(stdscr,y,x,c)
  1528. #define mvadd_wchnstr(y,x,s,n)        mvwadd_wchnstr(stdscr,y,x,s,n)
  1529. #define mvadd_wchstr(y,x,s)        mvwadd_wchstr(stdscr,y,x,s)
  1530. #define mvaddnwstr(y,x,wstr,n)        mvwaddnwstr(stdscr,y,x,wstr,n)
  1531. #define mvaddwstr(y,x,wstr)        mvwaddwstr(stdscr,y,x,wstr)
  1532. #define mvget_wch(y,x,c)        mvwget_wch(stdscr,y,x,c)
  1533. #define mvget_wstr(y,x,t)        mvwget_wstr(stdscr,y,x,t)
  1534. #define mvgetn_wstr(y,x,t,n)        mvwgetn_wstr(stdscr,y,x,t,n)
  1535. #define mvhline_set(y,x,c,n)        mvwhline_set(stdscr,y,x,c,n)
  1536. #define mvin_wch(y,x,c)            mvwin_wch(stdscr,y,x,c)
  1537. #define mvin_wchnstr(y,x,c,n)        mvwin_wchnstr(stdscr,y,x,c,n)
  1538. #define mvin_wchstr(y,x,c)        mvwin_wchstr(stdscr,y,x,c)
  1539. #define mvinnwstr(y,x,c,n)        mvwinnwstr(stdscr,y,x,c,n)
  1540. #define mvins_nwstr(y,x,t,n)        mvwins_nwstr(stdscr,y,x,t,n)
  1541. #define mvins_wch(y,x,c)        mvwins_wch(stdscr,y,x,c)
  1542. #define mvins_wstr(y,x,t)        mvwins_wstr(stdscr,y,x,t)
  1543. #define mvinwstr(y,x,c)            mvwinwstr(stdscr,y,x,c)
  1544. #define mvvline_set(y,x,c,n)        mvwvline_set(stdscr,y,x,c,n)
  1545.  
  1546. #define mvwadd_wch(win,y,x,c)        (wmove(win,y,x) == ERR ? ERR : wadd_wch(win,c))
  1547. #define mvwadd_wchnstr(win,y,x,s,n)    (wmove(win,y,x) == ERR ? ERR : wadd_wchnstr(win,s,n))
  1548. #define mvwadd_wchstr(win,y,x,s)    (wmove(win,y,x) == ERR ? ERR : wadd_wchstr(win,s))
  1549. #define mvwaddnwstr(win,y,x,wstr,n)    (wmove(win,y,x) == ERR ? ERR : waddnwstr(win,wstr,n))
  1550. #define mvwaddwstr(win,y,x,wstr)    (wmove(win,y,x) == ERR ? ERR : waddwstr(win,wstr))
  1551. #define mvwget_wch(win,y,x,c)        (wmove(win,y,x) == ERR ? ERR : wget_wch(win,c))
  1552. #define mvwget_wstr(win,y,x,t)        (wmove(win,y,x) == ERR ? ERR : wget_wstr(win,t))
  1553. #define mvwgetn_wstr(win,y,x,t,n)    (wmove(win,y,x) == ERR ? ERR : wgetn_wstr(win,t,n))
  1554. #define mvwhline_set(win,y,x,c,n)    (wmove(win,y,x) == ERR ? ERR : whline_set(win,c,n))
  1555. #define mvwin_wch(win,y,x,c)        (wmove(win,y,x) == ERR ? ERR : win_wch(win,c))
  1556. #define mvwin_wchnstr(win,y,x,c,n)    (wmove(win,y,x) == ERR ? ERR : win_wchnstr(win,c,n))
  1557. #define mvwin_wchstr(win,y,x,c)        (wmove(win,y,x) == ERR ? ERR : win_wchstr(win,c))
  1558. #define mvwinnwstr(win,y,x,c,n)        (wmove(win,y,x) == ERR ? ERR : winnwstr(win,c,n))
  1559. #define mvwins_nwstr(win,y,x,t,n)    (wmove(win,y,x) == ERR ? ERR : wins_nwstr(win,t,n))
  1560. #define mvwins_wch(win,y,x,c)        (wmove(win,y,x) == ERR ? ERR : wins_wch(win,c))
  1561. #define mvwins_wstr(win,y,x,t)        (wmove(win,y,x) == ERR ? ERR : wins_wstr(win,t))
  1562. #define mvwinwstr(win,y,x,c)        (wmove(win,y,x) == ERR ? ERR : winwstr(win,c))
  1563. #define mvwvline_set(win,y,x,c,n)    (wmove(win,y,x) == ERR ? ERR : wvline_set(win,c,n))
  1564.  
  1565. #endif /* NCURSES_NOMACROS */
  1566.  
  1567. #if defined(TRACE) || defined(NCURSES_TEST)
  1568. extern NCURSES_EXPORT(const char *) _nc_viswbuf(const wchar_t *);
  1569. extern NCURSES_EXPORT(const char *) _nc_viswibuf(const wint_t *);
  1570. #endif
  1571.  
  1572. #endif /* _XOPEN_SOURCE_EXTENDED */
  1573. /* $Id: curses.tail,v 1.15 2007/03/10 17:51:24 tom Exp $ */
  1574. /*
  1575.  * vile:cmode:
  1576.  * This file is part of ncurses, designed to be appended after curses.h.in
  1577.  * (see that file for the relevant copyright).
  1578.  */
  1579.  
  1580. /* mouse interface */
  1581.  
  1582. #if NCURSES_MOUSE_VERSION > 1
  1583. #define NCURSES_MOUSE_MASK(b,m) ((m) << (((b) - 1) * 5))
  1584. #else
  1585. #define NCURSES_MOUSE_MASK(b,m) ((m) << (((b) - 1) * 6))
  1586. #endif
  1587.  
  1588. #define    NCURSES_BUTTON_RELEASED    001L
  1589. #define    NCURSES_BUTTON_PRESSED    002L
  1590. #define    NCURSES_BUTTON_CLICKED    004L
  1591. #define    NCURSES_DOUBLE_CLICKED    010L
  1592. #define    NCURSES_TRIPLE_CLICKED    020L
  1593. #define    NCURSES_RESERVED_EVENT    040L
  1594.  
  1595. /* event masks */
  1596. #define    BUTTON1_RELEASED    NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_RELEASED)
  1597. #define    BUTTON1_PRESSED        NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_PRESSED)
  1598. #define    BUTTON1_CLICKED        NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_CLICKED)
  1599. #define    BUTTON1_DOUBLE_CLICKED    NCURSES_MOUSE_MASK(1, NCURSES_DOUBLE_CLICKED)
  1600. #define    BUTTON1_TRIPLE_CLICKED    NCURSES_MOUSE_MASK(1, NCURSES_TRIPLE_CLICKED)
  1601.  
  1602. #define    BUTTON2_RELEASED    NCURSES_MOUSE_MASK(2, NCURSES_BUTTON_RELEASED)
  1603. #define    BUTTON2_PRESSED        NCURSES_MOUSE_MASK(2, NCURSES_BUTTON_PRESSED)
  1604. #define    BUTTON2_CLICKED        NCURSES_MOUSE_MASK(2, NCURSES_BUTTON_CLICKED)
  1605. #define    BUTTON2_DOUBLE_CLICKED    NCURSES_MOUSE_MASK(2, NCURSES_DOUBLE_CLICKED)
  1606. #define    BUTTON2_TRIPLE_CLICKED    NCURSES_MOUSE_MASK(2, NCURSES_TRIPLE_CLICKED)
  1607.  
  1608. #define    BUTTON3_RELEASED    NCURSES_MOUSE_MASK(3, NCURSES_BUTTON_RELEASED)
  1609. #define    BUTTON3_PRESSED        NCURSES_MOUSE_MASK(3, NCURSES_BUTTON_PRESSED)
  1610. #define    BUTTON3_CLICKED        NCURSES_MOUSE_MASK(3, NCURSES_BUTTON_CLICKED)
  1611. #define    BUTTON3_DOUBLE_CLICKED    NCURSES_MOUSE_MASK(3, NCURSES_DOUBLE_CLICKED)
  1612. #define    BUTTON3_TRIPLE_CLICKED    NCURSES_MOUSE_MASK(3, NCURSES_TRIPLE_CLICKED)
  1613.  
  1614. #define    BUTTON4_RELEASED    NCURSES_MOUSE_MASK(4, NCURSES_BUTTON_RELEASED)
  1615. #define    BUTTON4_PRESSED        NCURSES_MOUSE_MASK(4, NCURSES_BUTTON_PRESSED)
  1616. #define    BUTTON4_CLICKED        NCURSES_MOUSE_MASK(4, NCURSES_BUTTON_CLICKED)
  1617. #define    BUTTON4_DOUBLE_CLICKED    NCURSES_MOUSE_MASK(4, NCURSES_DOUBLE_CLICKED)
  1618. #define    BUTTON4_TRIPLE_CLICKED    NCURSES_MOUSE_MASK(4, NCURSES_TRIPLE_CLICKED)
  1619.  
  1620. /*
  1621.  * In 32 bits the version-1 scheme does not provide enough space for a 5th
  1622.  * button, unless we choose to change the ABI by omitting the reserved-events.
  1623.  */
  1624. #if NCURSES_MOUSE_VERSION > 1
  1625.  
  1626. #define    BUTTON5_RELEASED    NCURSES_MOUSE_MASK(5, NCURSES_BUTTON_RELEASED)
  1627. #define    BUTTON5_PRESSED        NCURSES_MOUSE_MASK(5, NCURSES_BUTTON_PRESSED)
  1628. #define    BUTTON5_CLICKED        NCURSES_MOUSE_MASK(5, NCURSES_BUTTON_CLICKED)
  1629. #define    BUTTON5_DOUBLE_CLICKED    NCURSES_MOUSE_MASK(5, NCURSES_DOUBLE_CLICKED)
  1630. #define    BUTTON5_TRIPLE_CLICKED    NCURSES_MOUSE_MASK(5, NCURSES_TRIPLE_CLICKED)
  1631.  
  1632. #define    BUTTON_CTRL        NCURSES_MOUSE_MASK(6, 0001L)
  1633. #define    BUTTON_SHIFT        NCURSES_MOUSE_MASK(6, 0002L)
  1634. #define    BUTTON_ALT        NCURSES_MOUSE_MASK(6, 0004L)
  1635. #define    REPORT_MOUSE_POSITION    NCURSES_MOUSE_MASK(6, 0010L)
  1636.  
  1637. #else
  1638.  
  1639. #define    BUTTON1_RESERVED_EVENT    NCURSES_MOUSE_MASK(1, NCURSES_RESERVED_EVENT)
  1640. #define    BUTTON2_RESERVED_EVENT    NCURSES_MOUSE_MASK(2, NCURSES_RESERVED_EVENT)
  1641. #define    BUTTON3_RESERVED_EVENT    NCURSES_MOUSE_MASK(3, NCURSES_RESERVED_EVENT)
  1642. #define    BUTTON4_RESERVED_EVENT    NCURSES_MOUSE_MASK(4, NCURSES_RESERVED_EVENT)
  1643.  
  1644. #define    BUTTON_CTRL        NCURSES_MOUSE_MASK(5, 0001L)
  1645. #define    BUTTON_SHIFT        NCURSES_MOUSE_MASK(5, 0002L)
  1646. #define    BUTTON_ALT        NCURSES_MOUSE_MASK(5, 0004L)
  1647. #define    REPORT_MOUSE_POSITION    NCURSES_MOUSE_MASK(5, 0010L)
  1648.  
  1649. #endif
  1650.  
  1651. #define    ALL_MOUSE_EVENTS    (REPORT_MOUSE_POSITION - 1)
  1652.  
  1653. /* macros to extract single event-bits from masks */
  1654. #define    BUTTON_RELEASE(e, x)        ((e) & (001 << (6 * ((x) - 1))))
  1655. #define    BUTTON_PRESS(e, x)        ((e) & (002 << (6 * ((x) - 1))))
  1656. #define    BUTTON_CLICK(e, x)        ((e) & (004 << (6 * ((x) - 1))))
  1657. #define    BUTTON_DOUBLE_CLICK(e, x)    ((e) & (010 << (6 * ((x) - 1))))
  1658. #define    BUTTON_TRIPLE_CLICK(e, x)    ((e) & (020 << (6 * ((x) - 1))))
  1659. #define    BUTTON_RESERVED_EVENT(e, x)    ((e) & (040 << (6 * ((x) - 1))))
  1660.  
  1661. typedef struct
  1662. {
  1663.     short id;        /* ID to distinguish multiple devices */
  1664.     int x, y, z;    /* event coordinates (character-cell) */
  1665.     mmask_t bstate;    /* button state bits */
  1666. }
  1667. MEVENT;
  1668.  
  1669. extern NCURSES_EXPORT(int) getmouse (MEVENT *);
  1670. extern NCURSES_EXPORT(int) ungetmouse (MEVENT *);
  1671. extern NCURSES_EXPORT(mmask_t) mousemask (mmask_t, mmask_t *);
  1672. extern NCURSES_EXPORT(bool) wenclose (const WINDOW *, int, int);
  1673. extern NCURSES_EXPORT(int) mouseinterval (int);
  1674. extern NCURSES_EXPORT(bool) wmouse_trafo (const WINDOW*, int*, int*, bool);
  1675. extern NCURSES_EXPORT(bool) mouse_trafo (int*, int*, bool);              /* generated */
  1676.  
  1677. #define mouse_trafo(y,x,to_screen) wmouse_trafo(stdscr,y,x,to_screen)
  1678.  
  1679. /* other non-XSI functions */
  1680.  
  1681. extern NCURSES_EXPORT(int) mcprint (char *, int);    /* direct data to printer */
  1682. extern NCURSES_EXPORT(int) has_key (int);        /* do we have given key? */
  1683.  
  1684. /* Debugging : use with libncurses_g.a */
  1685.  
  1686. extern NCURSES_EXPORT(void) _tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
  1687. extern NCURSES_EXPORT(void) _tracedump (const char *, WINDOW *);
  1688. extern NCURSES_EXPORT(char *) _traceattr (attr_t);
  1689. extern NCURSES_EXPORT(char *) _traceattr2 (int, chtype);
  1690. extern NCURSES_EXPORT(char *) _nc_tracebits (void);
  1691. extern NCURSES_EXPORT(char *) _tracechar (int);
  1692. extern NCURSES_EXPORT(char *) _tracechtype (chtype);
  1693. extern NCURSES_EXPORT(char *) _tracechtype2 (int, chtype);
  1694. #ifdef _XOPEN_SOURCE_EXTENDED
  1695. #define _tracech_t        _tracecchar_t
  1696. extern NCURSES_EXPORT(char *) _tracecchar_t (const cchar_t *);
  1697. #define _tracech_t2        _tracecchar_t2
  1698. extern NCURSES_EXPORT(char *) _tracecchar_t2 (int, const cchar_t *);
  1699. #else
  1700. #define _tracech_t        _tracechtype
  1701. #define _tracech_t2        _tracechtype2
  1702. #endif
  1703. extern NCURSES_EXPORT(char *) _tracemouse (const MEVENT *);
  1704. extern NCURSES_EXPORT(void) trace (const unsigned int);
  1705.  
  1706. /* trace masks */
  1707. #define TRACE_DISABLE    0x0000    /* turn off tracing */
  1708. #define TRACE_TIMES    0x0001    /* trace user and system times of updates */
  1709. #define TRACE_TPUTS    0x0002    /* trace tputs calls */
  1710. #define TRACE_UPDATE    0x0004    /* trace update actions, old & new screens */
  1711. #define TRACE_MOVE    0x0008    /* trace cursor moves and scrolls */
  1712. #define TRACE_CHARPUT    0x0010    /* trace all character outputs */
  1713. #define TRACE_ORDINARY    0x001F    /* trace all update actions */
  1714. #define TRACE_CALLS    0x0020    /* trace all curses calls */
  1715. #define TRACE_VIRTPUT    0x0040    /* trace virtual character puts */
  1716. #define TRACE_IEVENT    0x0080    /* trace low-level input processing */
  1717. #define TRACE_BITS    0x0100    /* trace state of TTY control bits */
  1718. #define TRACE_ICALLS    0x0200    /* trace internal/nested calls */
  1719. #define TRACE_CCALLS    0x0400    /* trace per-character calls */
  1720. #define TRACE_DATABASE    0x0800    /* trace read/write of terminfo/termcap data */
  1721. #define TRACE_ATTRS    0x1000    /* trace attribute updates */
  1722.  
  1723. #define TRACE_SHIFT    13    /* number of bits in the trace masks */
  1724. #define TRACE_MAXIMUM    ((1 << TRACE_SHIFT) - 1) /* maximum trace level */
  1725.  
  1726. #if defined(TRACE) || defined(NCURSES_TEST)
  1727. extern NCURSES_EXPORT_VAR(int) _nc_optimize_enable;        /* enable optimizations */
  1728. extern NCURSES_EXPORT(const char *) _nc_visbuf (const char *);
  1729. #define OPTIMIZE_MVCUR        0x01    /* cursor movement optimization */
  1730. #define OPTIMIZE_HASHMAP    0x02    /* diff hashing to detect scrolls */
  1731. #define OPTIMIZE_SCROLL        0x04    /* scroll optimization */
  1732. #define OPTIMIZE_ALL        0xff    /* enable all optimizations (dflt) */
  1733. #endif
  1734.  
  1735. #ifdef __cplusplus
  1736.  
  1737. #ifndef NCURSES_NOMACROS
  1738.  
  1739. /* these names conflict with STL */
  1740. #undef box
  1741. #undef clear
  1742. #undef erase
  1743. #undef move
  1744. #undef refresh
  1745.  
  1746. #endif /* NCURSES_NOMACROS */
  1747.  
  1748. }
  1749. #endif
  1750.  
  1751. #endif /* __NCURSES_H */
  1752.